2 回答
人到中年有点甜
TA贡献1895条经验 获得超7个赞
要去除前缀,请使用String.substring(index):
points_player = points_player.substring(7); // Strip "Points:"
现在可能会留下空格:
points_player = points_player.trim(); // Strip whitespace
最后,您需要以正确的方式转换为 int :
int value;
if ("-".equals(points_player)) {
value = 0; // No points, yet
} else {
value = Integer.parseInt(points_player);
}
System.out.println(value);
慕标琳琳
TA贡献1830条经验 获得超9个赞
这就是你要照顾的东西。然后试试这个。
String string = "Points:-";
String[] s = string.split(":");
String s1 = s[0] + ":"; // Points:
String s2 = s[1]; // -
System.out.println(s1); //
System.out.println(s2);
添加回答
举报
0/150
提交
取消