0
所有,我想拉一個集合/字符串數組。我發現正則表達式可能是最好的方式來做到這一點。正則表達式 - 拉所有的字符串,但與空格,如果在兩個引號(最好不加引號)
我有一個字符串格式化爲這樣的與輸出的一切細微變化
string1 "string 2" "string.3" string4 string5
我想這樣
output 1 = string1
output 2 = string 2 //without quotes preferably
output 3 = string.3 //without quotes preferably
output 4 = string4
output 5 = string5
我真的只需要在正則表達式部分。
該工程。謝謝,這是在C#中。 – Angryjames