用HTML将所有表情符号包装成字符串?

时间:2018-12-14 17:00:41

标签: php regex

我将如何使用带有表情符号的文本字符串并将每个表情符号包装在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"

1 个答案:

答案 0 :(得分:0)

此正则表达式将匹配表情符号:

[\{uD83C}-\x{DBFF}\x{DC00}-\x{DFFF}]+

替换为:

<i>$0</i>

演示:https://regex101.com/r/aGfJil/1/