正则表达式Java

正则表达式Java,第1张

正则表达式Java

先行使用

Input
find
循环中使用,而不是
matches

Pattern pattern = Pattern.compile("Input(.*?)(?=Input|$)");Matcher matcher = pattern.matcher(s);while (matcher.find()) {   System.out.println(matcher.group(1));}

看到它在线上工作:ideone

但是最好在这里使用split:

String[] result = s.split("Input");// You need to ignore the first element in result, because it is empty.

看到它在线上工作:ideone



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5561752.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存