gpt4 book ai didi

java - 根据另一个字符串从字符串中提取数字

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

<分区>

我正在尝试为格式为 [digit] [to] [digit] 的字符串编写正则表达式,例如。 1 到 5,其中如果我从给定的字符串中找到一个单词“to”,我想提取前后的数字,我试过这个但它不起作用。

Pattern p = Pattern.compile("([0-9]+)\\bto\\b([0-9]+)");
Matcher m = p.matcher("1 to 5");
m.find();
System.out.println(m.group(0));
System.out.println(m.group(1));
System.out.println(m.group(2));

预期的 o/p

1
to
5

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