使用perl检测汉字?
有没有办法用 Perl 来检测汉字?有没有办法用符号点“.”来分割汉字?完美?
Is there any way to detect Chinese characters using Perl? And is there any way on how to split Chinese characters with symbol dot '.' perfectly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您对汉字的具体概念。也许您正在寻找
/\p{Script=Hani}/
,但如果我们想要广泛传播,以下正则表达式模式将匹配中文书写中出现的内容。必要时进行限制。是的,
.
匹配一个字符。 split DWYM 的空模式:Depends on your particular notion of what is a Chinese character. Perhaps you're looking for
/\p{Script=Hani}/
, but if we want to cast our net wide, the following regex pattern will match stuff that occurs in Chinese writing. Restrict if necessary.Yes,
.
matches one character. The empty pattern for split DWYM: