我正在开发一个 Android 应用程序,我想识别主题标签、提及和链接。我有一个可以在我的建议中使用的 Objective-C 代码。我质疑这些,现在我有这些代码:
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
但在推文中出现“Using my appnull”
我如何重用此代码来识别主题标签和提及?
I think that is changing the input.split("\\s") by "@\\s" or "#\\s"