0
我有以下輸入字符串:Java的掃描儀解析輸入
1 imported box of chocolates at 10.00 1 imported bottle of perfume at 47.50
我想使用Java Scanner類來解析這個輸入創建例如產品對象的列表。
請注意,輸入線由多個產品(兩個在這種情況下),如下所示:
Quantity: 1
Name: imported box of chocolates
Price: 10.00
Quantity: 1
Name: imported bottle of perfume
Price: 47.50
理想我想解析線的第一產品區段再下產品部分。
我知道如何做到這一點使用正則表達式等,但問題是:
What is the best way to use the Java Scanner to parse the input line?
謝謝。