gpt4 book ai didi

java - 从字符串中获取多个int

转载 作者:行者123 更新时间:2023-12-01 23:21:11 24 4
gpt4 key购买 nike

我有一个字符串:

"3, V, 11, H, 21, H"

我正在努力获得

int first = 3
int second = 11
int third = 21

我不太确定如何执行此操作,因为数字可能是一位或两位数字,数字之间有非数字字符,并且我必须捕获多个数字。我尝试了正则表达式,但留下了“31121”,它并不表明这三个数字是什么。

最佳答案

试试这个代码。应该能让你完成工作。

public static void main(String[] args){
String s = "3, V, 11, H, 21, H";
String[] t = s.split(" [ ,]*|,[ ,]*");
int first = Integer.parseInt(t[0]);
int second = Integer.parseInt(t[2]);
int third = Integer.parseInt(t[4]);
System.out.println(first);
System.out.println(second);
System.out.println(third);
}

关于java - 从字符串中获取多个int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20598935/

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