我正在使用以下方法提取Javascript字符串中的字符:

var first = str.charAt(0);

我想检查一下是否是字母。奇怪的是,Javascript中似乎不存在这种功能。至少我找不到它。

我该如何测试?

最佳答案

我相信这个插件具有您想要的功能:http://xregexp.com/plugins/(github链接:https://github.com/slevithan/xregexp)

有了它,您可以简单地将所有unicode字母与\p{L}匹配。

阅读此源文件的标题以查看其支持的类别:http://xregexp.com/plugins/xregexp-unicode-categories.js

09-25 18:48