我正在开发一个Android应用程序,我想识别主题标签,提及和链接。我有一个代码,可以在objective-c中使用我的建议。我问these,现在我有了这些代码:
import java.net.URL;
import java.util.List;
String input = /* text from edit text */;
String[] words = input.split("\\s");
List<URL> urls=null;
for (String s : words){
try
{
urls.add(new URL(s));
}
catch (MalformedURLException e) {
// not a url
}
}
现在我想把它们放在推文上,我已经开发了代码来完成它,而推文是基于一个字符串。 我的问题是如何将列表中的数据放入字符串中?
//I test these
String tweet="Using my app"+urls
但在推文中出现“使用我的appnull”
我如何重复使用此代码来识别主题标签和提及?
I think that is changing the input.split("\\s") by "@\\s" or "#\\s"