📅  最后修改于: 2020-11-14 10:21:46             🧑  作者: Mango
所有格量词类似于贪婪量词。它通过检查整个字符串来指示引擎启动。在意义上,它不起作用,匹配失败并且没有回头是不同的。以下是在Java中使用正则表达式的所有量词的示例。
Sr.No | Construct & Matches |
---|---|
1 | X?+
X, once or not at all. |
2 | X*+
X, zero or more times |
3 | X++
X, one or more times. |
4 | X{n}+
X, exactly n times. |
5 | X{n,}+
X, at least n times. |
6 | X{n,m}+
X, at least n but not more than m times |