gpt4 book ai didi

Java围绕数字进行分割

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

我在java中有一个字符串,例如:

 "Corrected Acceleration 20130816_053116_RCS2_21 GNS Science"

我正在寻找数字序列的最后一部分。它是最后一个下划线后面的数字。

在这种情况下:

21

更多示例

 "Corrected Acceleration 20130346_053116_RCS2_15 GNS Science"

想要15

 "Corrected Acceleration 20130346_053116_RCS2_13 GNS Science"

想要13

 "Acceleration 123214_05312323_RCS2_40 GNS Science"

想要40

此格式将保持不变。变体将是不同的数字,并且前面的子字符串 Corrected 可能会丢失。

我该如何提取这个?

最佳答案

您可以使用这样的正则表达式:

Pattern pattern = Pattern.compile("_[0-9]+ ");
Matcher matcher = pattern.matcher(text);
matcher.find();

// Note the + 1 and - 1 here to get rid of the leading underscore and the trailing space
int number = Integer.parseInt(text.subString(matcher.start() + 1, matcher.end() - 1));

关于Java围绕数字进行分割,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22156876/

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