文字列から #hashtag と "http://" リンクを見つけて色付けすることはできますか? 私はAndroidでこれを使用しています。
public void setTitle(String title) {
this.title = title;
}
前もって感謝します
この関数は、文字列内のすべての #hashtags のリストを返します
public static List<String> getHashTags(String str) {
Pattern MY_PATTERN = Pattern.compile("#(\\S+)");
Matcher mat = MY_PATTERN.matcher(str);
List<String> strs = new ArrayList<>();
while (mat.find()) {
strs.add(mat.group(1));
}
return strs;
}
正規表現を使用して一致させることができます。