Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从一个文本框中获取用户输入,其中多个选项将用逗号分隔,例如:
彼得·加布里埃尔、约翰·斯诺、勒布朗·詹姆斯
我将这些字符串分开
string[] inputAuthors = txtAuthors.Text.Split(',');
现在我想从inputAuthors[0](彼得加布里埃尔)中选择分开的彼得和加布里埃尔。正如我所看到的,唯一的方法是将这些字符串拆分为空间作为分隔索引,但我不知道该怎么做。
inputAuthors[0]
像这样?
var namesSeparated = inputAuthors[0].Split(' ');
像这样:
String[] names; names = inputAuthors[0].Text.Split(' ');
?