Change RegEx to allow for both English & Japanese characters

This is my regular expression code:

"onlyLetterSp": {
    "regex": /^[a-zA-Z ']+$/,
    "alertText": "* Letters only"
}

How can I change this to allow English characters as well as Japanese?


I found this link:

http://www.localizingjapan.com/blog/2012/01/20/regular-expressions-for-japanese-text/

There are apparently a few different character sets for different types of Japanese.

Hiragana for example is:

[x3041-x3096]

You must be looking for the u regex modifier, which stands for Unicode. With it you can use POSIX symbols like w to include whatever "word" characters you like

链接地址: http://www.djcxy.com/p/12144.html

上一篇: 漂亮的打印sql查询

下一篇: 更改RegEx以允许使用英文和日文字符