在正则表达式中,$符号用来匹配字符串的末尾位置。 默认情况下,匹配必须出现在字符串的末尾,或在字符串末尾的 \n 之前;在多行模式中,必须出现在该行的末尾之前,或在该行末尾的 \n 之前。
\n
例如,正则表达式 "hello$" 会匹配以 "hello" 结尾的字符串。下面是一个Python的例子:
xxxxxxxxxximport re pattern = r"hello$" match1 = re.search(pattern, "Say hello to the world!")match2 = re.search(pattern, "Hello, how are you?")match3 = re.search(pattern, "Are you there? hello") print(match1) # None,因为 "hello" 不在末尾print(match2) # None,因为 "hello" 不在末尾print(match3) # <re.Match object; span=(15, 20), match='hello'>,匹配成功
xxxxxxxxxx
import re
pattern = r"hello$"
match1 = re.search(pattern, "Say hello to the world!")
match2 = re.search(pattern, "Hello, how are you?")
match3 = re.search(pattern, "Are you there? hello")
print(match1) # None,因为 "hello" 不在末尾
print(match2) # None,因为 "hello" 不在末尾
print(match3) # <re.Match object; span=(15, 20), match='hello'>,匹配成功
注意,在正则表达式中,$符号需要使用原始字符串(raw string)来表示,即在字符串前面加上 "r" 前缀。这样可以避免转义字符的影响。
正则表达式付费代写、咨询、答疑解惑,专业、快速、高效帮您解决正则表达式方面的各种问题,可定制各类软件应用程序。
正则学习工作必备在线工具合集
.
^
$
\d
\w
\s
\D
\W
\S
[abc]
[a-z]
[^abc]
aa|bb
?
*
+
{n}
{n,}
{m,n}
(
)
\1
(?:
(?=
(?!
在线客服QQ:543690914,备案号: 苏ICP备15037649号-32。东海县白塔埠镇佳诚电脑经营部版权所有。