使用Python来做正则表达式:
import re
txt = "hello world"
#Check if the string ends with 'world':
x = re.findall("world$", txt)
if x:
print("Yes, the string ends with 'world'")
else:
print("No match")
#Check if the string ends with '4':
y = re.findall('4$', txt)
if y:
print("Yes")
else:
print("No")
使用$ 符号:Ends with
结果如下:
如果觉得不错,就点赞或者关注或者留言~~
谢谢~ ~