gpt4 book ai didi

java - OCP 7 II 正则表达式

转载 作者:行者123 更新时间:2023-11-29 05:12:48 25 4
gpt4 key购买 nike

<分区>

import java.util.regex.*;

public class Regex2 {

public static void main(String[] args) {
Pattern p = Pattern.compile("\\d*");
Matcher m = p.matcher("ab34ef");
boolean b = false;
while ( m.find()) {
System.out.print(m.start() + m.group());
}
}
}

为什么这段代码产生输出:01234456

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com