我最近学会TextFieldParser
了解析words
以前我会string.Split
用来做的地方。我有一个关于新学到的问题class
。
如果我们使用string.Split
with解析这样的消息StringSplitOptions.RemoveEmptyEntries
string message = "create myclass \"56, 'for better or worse'\""; //have multiple spaces
string[] words = message.Split(new char[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries);
然后我们将得到words
其中包含三个元素,如下所示:
[0] create
[1] myclass
[2] "56, 'for better or worse'"
但是如果我们这样做TextFieldParser
string str = "create myclass \"56, 'for the better or worse'\"";
var parser = new Microsoft.VisualBasic.FileIO.TextFieldParser(new StringReader(str)); //treat string as I/O
parser.Delimiters = new string[] { " " };
parser.HasFieldsEnclosedInQuotes = true;
string[] words2 = parser.ReadFields();
然后return
遗嘱由一些words
没有文字的
[0] create
[1]
[2]
[3]
[4] myclass
[5]
[6]
[7] "56, 'for better or worse'"
现在有没有等效的方法来删除words
结果数组中的空string.Split
StringSplitOptions.RemoveEmptyEntries
?