Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您如何指示需要超过 10 个字符的正则表达式?我知道 '*' 大于 0,并且 '+' 大于 1,但是要求大于 10 的语法是什么?谢谢大家!!!!
您使用大括号表示法。例如,正则表达式a{10,}将匹配 10 个或更多a字符。a{10,20}将匹配至少 10 且不超过 20a秒。
a{10,}
a
a{10,20}
这取决于您的正则表达式的外观,但这可能会起作用:
[^stuff]{10,}
{10,}
{,10}
{10,15}