This question already has answers here:
Using explicitly numbered repetition instead of question mark, star and plus
(4 个回答)
去年关闭。
我知道在正则表达式中可以通过花括号指定所需的匹配数为
{最小值,最大值}
我正在阅读这篇文章:http://msdn.microsoft.com/en-us/library/ms537509%28v=vs.85%29.aspx
并且无法理解 {1,} 或 {0,} 等的含义。
(4 个回答)
去年关闭。
我知道在正则表达式中可以通过花括号指定所需的匹配数为
{最小值,最大值}
我正在阅读这篇文章:http://msdn.microsoft.com/en-us/library/ms537509%28v=vs.85%29.aspx
并且无法理解 {1,} 或 {0,} 等的含义。
最佳答案
这是正则表达式中的无穷大{0,}
= *
是指 {0,infinity}
{1,}
= +
是指 {1,infinity}
关于regex - 正则表达式中的匹配范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11879472/
10-16 11:33