匹配 ASCII 和 Unicode 字母的正则表达式
最近,我惊讶地发现 JavaScript 没有内置对 Unicode 正则表达式的支持。
那么如何测试字符串中的字母(Unicode 或 ASCII)呢?
Recently I discovered, to my surprise, that JavaScript has no built-in support for Unicode regular expressions.
So how can I test a string for letters only, Unicode or ASCII?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我推荐 Steven Levithan 优秀的 XRegExp 库,它有一个包含各种 Unicode 字符类的 Unicode 插件: http://xregexp.com/plugins/
I'd recommend Steven Levithan's excellent XRegExp library, which has a Unicode plugin containing various Unicode character classes: http://xregexp.com/plugins/
这也让我感到惊讶,因为
打印出来的是真的。
This comes to a surprise to me as well because
prints true.