我需要正则表达式来获取准确的字符串

我需要正则表达式来获取准确的字符串

我需要仅选择 string1 的正则表达式

string1: potato
string2: potato2
string3: 1potato
string4: 1potato2

谢谢

答案1

用于\b匹配单词的边界(左或右)。

\bpotato\b

答案2

^potato$

^匹配输入的开头,$匹配结尾。

相关内容