1

所以我有一个这样的字符串

 String org = "Go to http://Apple.com, to see the new Ipad";

如何返回字符串中所有单词的列表,包括 url?例如。上面的字符串应该返回这个列表

List<String> chopped = new List<String>(){"Go", "to", "http://Apple.com",  " to", "see" , " the", "  new", " Ipad"};

我这样做是因为我想重建字符串但将链接用于其他内容。

4

1 回答 1

3

使用string.Split方法:

string[] chopped = org.Split(' ');

它返回数组string而不是List<string>

但是你仍然需要照顾像,. 您可以尝试执行以下操作:

string []chopped = org.Split(new[] { ' ', ',' }, StringSplitOptions.RemoveEmptyEntries);

它将使用空格和逗号进行拆分,并返回忽略空的结果。

于 2013-10-24T22:46:12.000 回答