简体   繁体   中英

Regex add special characters

I have this regex:

var characterReg = /^\s*[a-zA-Z0-9,\s]+\s*$/;

How do I include the letters: Å, Ø, Æ, å, ø, æ ?

Use the unicode values:

\u{1234}{2}

for perl, use:

\x{1234}{2}

will match the 1234 unicode character twice.

There is much more information on this here: http://www.regular-expressions.info/unicode.html

In ruby, looks like unicode support is half-baked: http://www.ruby-forum.com/topic/133538

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM