Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเปรียบเทียบสองสตริงโดยใช้ regex ใน 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