如何将不在 [0x5E10, 0x7F35] 范围内的字符替换为 '*'在 PHP 中?
我不熟悉正则表达式如何处理十六进制,有人知道吗?
I'm not familiar with the how regular expressions treat hexadecimal, anyone knows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的方法可以解决这个问题:
重要的是
u
-修饰符(请参阅 此处):此处简短描述了为什么
\uFFFF
不是使用 PHP 工作:The following does the trick:
The important thing is the
u
-modifier (see here):And here a short description why
\uFFFF
is not working in PHP: