เราสามารถเปรียบเทียบสตริงที่กำหนดโดยใช้รหัสต่อไปนี้
ตัวอย่าง
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