所以我有一个这样的字符串
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"};
我这样做是因为我想重建字符串但将链接用于其他内容。