gpt4 book ai didi

java - 拆分包含两个 (x,y) 整数的字符串 - Java

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

我的问题很简单——我有一个字符串“2 1”。2代表int x坐标,1代表y坐标。

我不希望我的结果是这样的:

int x;

int y;

Sting example = "2 1";

//发生某种 split

结果..

x = 2 //these are both integers

y = 1

我正在考虑为 2 和 1 做一个子字符串...然后将其转换为 int。 ——也许还有别的办法?有更好的方法吗?

谢谢!

最佳答案

你可以组合一个 String.split(String)Integer.parseInt(String)喜欢

String example = "2 1";
String[] arr = example.split("\\s+"); // <-- one (or more) whitespace
int x = Integer.parseInt(arr[0]);
int y = Integer.parseInt(arr[1]);

关于java - 拆分包含两个 (x,y) 整数的字符串 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29046225/

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