我需要在我的textview中显示GIF表情符号,因此我决定使用Html span将所有出现的表情符号替换为各自的gif图像。但是,我需要帮助更换所有出现的表情符号字符。
例如:
我度过了美好的一天(微笑)
应替换为
I had a good day <img src: "path" />
到目前为止,我能够编码:
string regex = " "; //this is where I need help with the regex
String output = comment.getComment().replaceAll(regex, "<img src='PATH' ");
commenttext.setText(Html.fromHtml(output));
答案 0 :(得分:0)
如果您只是这样做String regex = "(\(smile\))";
这将取代所有(微笑)事件。这很容易做到。这是你在找什么?