2016-11-21 198 views
1

我一直在尋找一個答案,但我沒有找到一個可以幫助我的人(有人可能知道在哪裏指向我)。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 
+2

看到https://docs.oracle.com/javase/7/docs/api/java/lang/Integer.html#parseInt(java.lang.String) –

+0

最簡單的方法將是問用戶分別輸入日,月和年(3次調用掃描器)並分別驗證每一個。 – alfasin

回答

4

根據您的意見,和代碼使用Scanner。我想你想

userMonth = inSS.next(); 
userDate = inSS.nextInt(); 
userYear = inSS.nextInt(); 

但是,如果不需要你的任務的Scanner,那麼你肯定能消除它,並使用類似

String userInput = "Jan 12 1992"; 
String[] tokens = userInput.split("\\s+"); // <-- split on one or more spaces 
String userMonth = tokens[0]; 
int userDate = Integer.parseInt(tokens[1]); 
int userYear = Integer.parseInt(tokens[2]); 
+0

因此,使用下一個方法將遵循並跳過我聲明的任何值? – Aramza

+0

@Aramza我不確定你在問什麼,你有'inSS = new Scanner(userInput);'這意味着你的'Scanner'正在讀你預定義的'String'。 'next()'讀取'String'(Jan),'nextInt'讀取12,第三個'nextInt'讀取1992.在第二個版本中,我跳過'Scanner'並使用'String.split'。 –

-1

好像你正在處理的日期字符串,更好地使用特定的庫。

的Java 8

import java.time.format.DateTimeFormatter; 
import java.time.temporal.*; 

TemporalAccessor d = DateTimeFormatter.ofPattern("MMM DD yyyy").parse("Jan 12 1992") 
d.get(ChronoField.YEAR); // 1992 
d.get(ChronoField.MONTH_OF_YEAR); // 1 
d.get(ChronoField.DAY_OF_MONTH); // 12 

的Java 8(java.text.SimpleDateFormat中)之前

Date d = new SimpleDateFormat("MMM DD yyyy").parse("Jan 12 1992"); 
Calendar c = Calendar.getInstance(); 
c.setTime(d); 
c.get(Calendar.YEAR); // 1992 
c.get(Calendar.MONTH); // 0 - yeah, it starts from 0, embarrassingly 
c.get(Calendar.DAY_OF_MONTH); // 12 

或者使用JodaTime

DateTimeFormat.forPattern("MMM DD yyyy").parseDateTime("Jan 12 1992"); 
+0

這個答案只適用於安裝Java版本是1.8+。@LukeLee –

+0

每年的月份仍然是一個字符串 –

+0

OP正在處理日期時間,讓我們不要複雜的問題和**不**使用適當的日期時間庫。 –

0

我不希望使用一個用來打破堅果的大錘:-)但根據您在應用程序中所需的靈活性,您可以針對您的問題使用解析器。如果你把下面的語法寫入ANTLR,你可以解析輸入字符串並從中提取語義元素。您甚至可以處理不同的輸入排列,例如Jan 1999 12,1999 Mar 12等。

grammar SimpleMixed; 
fragment A:('a'|'A'); 
fragment B:('b'|'B'); 
fragment C:('c'|'C'); 
fragment D:('d'|'D'); 
fragment E:('e'|'E'); 
fragment F:('f'|'F'); 
fragment G:('g'|'G'); 
fragment H:('h'|'H'); 
fragment I:('i'|'I'); 
fragment J:('j'|'J'); 
fragment K:('k'|'K'); 
fragment L:('l'|'L'); 
fragment M:('m'|'M'); 
fragment N:('n'|'N'); 
fragment O:('o'|'O'); 
fragment P:('p'|'P'); 
fragment Q:('q'|'Q'); 
fragment R:('r'|'R'); 
fragment S:('s'|'S'); 
fragment T:('t'|'T'); 
fragment U:('u'|'U'); 
fragment V:('v'|'V'); 
fragment W:('w'|'W'); 
fragment X:('x'|'X'); 
fragment Y:('y'|'Y'); 
fragment Z:('z'|'Z'); 

s: userinput EOF; 
userinput: month date year 
    | month year date 
    | year month date 
    | year date month 
    | date year month 
    | date month year; 

month: Month; 
date: Date; 
year: Year; 
Month: J A N | F E B | M A R | A P R | M A Y | J U N | J U L | A U G | S E P  | 
O C T | N O V | D E C; 

Date: [1-9][0-2]?; 

Year: [1-9][0-9][0-9][0-9]; 


WS : [ \t\r\n]+ -> skip; 

讓我們假設一個用戶提供輸入jan 1999 12。使用Antlr從上面的語法生成的解析器解析它之後,您將得到下面的解析樹,從中可以輕鬆提取語義元素,根據這些語義元素可以推斷出數據類型並創建適當的對象(例如,年份和日期的int ,以及月份的字符串)。

enter image description here