我需要我的字符串分割成3個ARGS每個ARG是什麼引號內,並將它們存儲在不同的變量。拆分Java字符串加上引號到ARGS不帶引號
這是我的。下面的代碼採用所有命令行參數並將它們組合成一個大的String
。字符串的
例子我需要轉換:
「METRO Blue Line」 「Target Field Station Platform 1」 「south」
它應該成爲:
var1 = METRO Blue Line
var2 = Target Field Station Platform 1
var3 = south
我已經嘗試了很多與split("\"")
但不管出於什麼原因,它甚至不刪除爲我報價。
// Construct a string to hold the whole args.
// Implemented it this way because args is separated by spaces
String combine = "";
for(int i = 0; i < args.length; i++)
{
combine = combine.concat(args[i]);
combine = combine.concat(" ");
}
System.out.println(combine);
貴'字符串'包含精明的引號? –
@ Runesr4nerds如果用戶回答您的問題,請接受他的回答([接受答案:它是如何工作的?](https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-工作))。如果不是,請說明還沒有答案,這是StackOverflow非常重要的一部分,非常感謝。 – Zabuza