我一直在尋找一個答案,但我沒有找到一個可以幫助我的人(有人可能知道在哪裏指向我)。Java:將字符串拆分爲單獨的字符串和整數變量
我想將一個字符串分成一個字符串變量和兩個整數變量。我想知道是否有用戶使用我發現的字符串拆分方法,並通過其他方式將它用於int變量?
代碼:
import java.util.Scanner;
public class StringInputStream {
public static void main (String [] args) {
Scanner inSS = null;
String userInput = "Jan 12 1992";
inSS = new Scanner(userInput);
String userMonth = "";
int userDate = 0;
int userYear = 0;
// Can modify anything below here
String[] temp = userInput.split(" ", 2); // "1" means stop splitting after one space
userMonth = temp[0];
userDate = temp[1];
userYear = temp[2];
// Can modify anything above here
System.out.println("Month: " + userMonth);
System.out.println("Date: " + userDate);
System.out.println("Year: " + userYear);
return;
}
}
輸出示例:
Month: Jan
Date: 12
Year: 1992
看到https://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#parseInt(java.lang.String) –
最簡單的方法將是問用戶分別輸入日,月和年(3次調用掃描器)並分別驗證每一個。 – alfasin