我将如何使用带有表情符号的文本字符串并将每个表情符号包装在HTML标记中?
示例字符串...
str = "This is a test with emojis in the string"
所需的输出...
output = "This is <i></i> a test with <i></i> emojis in the <i></i> string"
答案 0 :(得分:0)
此正则表达式将匹配表情符号:
[\{uD83C}-\x{DBFF}\x{DC00}-\x{DFFF}]+
替换为:
<i>$0</i>