我需要仅选择 string1 的正则表达式
string1: potato
string2: potato2
string3: 1potato
string4: 1potato2
谢谢
答案1
用于\b
匹配单词的边界(左或右)。
\bpotato\b
答案2
^potato$
^
匹配输入的开头,$
匹配结尾。
我需要仅选择 string1 的正则表达式
string1: potato
string2: potato2
string3: 1potato
string4: 1potato2
谢谢
用于\b
匹配单词的边界(左或右)。
\bpotato\b
^potato$
^
匹配输入的开头,$
匹配结尾。