将 C 风格的 unicode 转义转换为 htmlentities
我想将每个 C
样式 unicode
字符更改为 html
实体。我编写了这个函数来做到这一点:
function ununicode($text) {
$text = preg_replace('/\\\\u([0-9a-f]{4})/i', '&#x$1;', $text);
return $text;
}
它工作得很好,但是忽略了诸如\u00f6\u00df
之类的第二个字符。即它会产生: ö\u00df
我的正则表达式有什么问题?
I want to change every C
style unicode
char into html
entity. I've written this function to do that:
function ununicode($text) {
$text = preg_replace('/\\\\u([0-9a-f]{4})/i', '$1;', $text);
return $text;
}
it works good, but ignores second character in sth like that \u00f6\u00df
. ie it will produce: ö\u00df
whats wrong with my regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加
g
标志(允许每行多次替换),这样就可以了:编辑:
您编写的代码似乎对我有用:
Try adding the
g
flag (which allows more than one replacement per line), so that it's this:Edit:
Your code as written seems to work for me: