Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 정규식을 사용하여 두 문자열을 비교하는 방법은 무엇입니까?

<시간/>

다음 코드를 사용하여 주어진 문자열을 비교할 수 있습니다.

예시

import re
s1 = 'Pink Forest'
s2 = 'Pink Forrest'
if bool(re.search(s1,s2))==True:
   print 'Strings match'
else:
   print 'Strings do not match'

출력

이것은 출력을 제공합니다.

Strings do not match