我有以下只允许字母的正则表达式:
/[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