gpt4 book ai didi

java - 数字之前的子字符串

转载 作者:行者123 更新时间:2023-12-01 23:00:07 25 4
gpt4 key购买 nike

我有:

String word = "It cost me 500 box 

我想做的是像这样显示这句话:

It cost me

500 box

我需要一个通用的方法,不仅仅是这个例子。你能帮我一下吗?

最佳答案

正如建议的,您可以使用正则表达式来完成这项工作,下面是一个可以为您解决问题的代码 fragment :

    String word = "It cost me 500 box";
Pattern p = Pattern.compile("(.* )([0-9].*)");
Matcher m = p.matcher(word);
if(m.matches()) {
System.out.println(m.group(1));
System.out.println(m.group(2));
}

希望这有帮助。

关于java - 数字之前的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23492655/

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