RegEx (6) - 使用 $ 符号

使用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

结果如下:
RegEx (6) - 使用 $ 符号
如果觉得不错,就点赞或者关注或者留言~~
谢谢~ ~

上一篇:C# 判断邮件格式


下一篇:JAVA表达式去除指定字符或数据