我希望从字符串XmodX
中分离出两个整数值,一个在mod之前,另一个在mod之后,整数可以是任意长度。最好的方法是什么?
答案 0 :(得分:1)
这种方法应该有效......
// The variable 'parts' will contain 2 items: your 2 integers, though they will still be String objects
String[] parts = myString.split("mod");
try {
int firstInt = Integer.parseInt(parts[0]);
int secondInt = Integer.parseInt(parts[1]);
) catch(NumberFormatException nfe) {
// One of your Strings was not an integer value
}