patterncompile find 性能(pattern compile)
2024-05-08 17:31:26
导读 大家好,小东方来为大家解答以上的问题。patterncompile find 性能,pattern compile这个很多人还不知道,现在让我们一起来看看吧!1、来...
大家好,小东方来为大家解答以上的问题。patterncompile find 性能,pattern compile这个很多人还不知道,现在让我们一起来看看吧!
1、来晚了 我详细解释下吧啊首先你得理解正则里“组(Group)”的概念简单的来说就是"()"里的匹配就是一个组 组有序号 从1开始到n 可以在表达式里做引用 虽然组可以无限多 但引用只能从1-9 共 9个 序号也是有规律的 每遇到一个"("组的序号+1 也就是说 \2代表的是 .这个组的引用.代表任意字符 (除过 “换行符”)*代表0-无限多 所以这个表达式的意思是匹配单一个或多个连续的字符 给你个例子体会下Pattern p = Pattern.compile("((.)\2*)");String s="122aa,,,, s09";Matcher m=p.matcher(s);while(m.find()){System.out.println("{"+***.group()+"}");}。
本文到此分享完毕,希望对大家有所帮助。
免责声明:本文由用户上传,如有侵权请联系删除!
猜你喜欢
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
最新文章
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08
- 05-08