/ re代表相当于/ [a-zA-Z] /使用p {L}

前端之家收集整理的这篇文章主要介绍了/ re代表相当于/ [a-zA-Z] /使用p {L}前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下正则表达式,只允许字母:
/[a-zA-Z]+/

     a = "abcDF"
     if (a.match(/[a-zA-Z]+/) == a){
        //Match
     }else{
        //No Match
     }

如何使用p {L}(通用 – 任何语言,如德语,英语等)

我试过的

a.match(/[p{l}]+/)
  a.match(/[\p{l}]+/)
  a.match(/p{l}/)
  a.match(/\p{l}/)

但是对于字母a =“aB”都返回null

解决方法

JavaScript本身不支持Unicode快捷方式.

所以你需要自己定义所有相关的Unicode范围.或者您可以使用Steven Levithan的XRegExp package with Unicode add-ons,并使用其Unicode属性快捷方式:

var regex = new XRegExp("^\\p{L}*$")
var a = "abcäöüéèê"
if (regex.test(a)) {
    // Match
} else {
    // No Match
}
原文链接:/js/152520.html

猜你在找的JavaScript相关文章