Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of any JavaScript libraries that support Unicode-aware regular expressions? For example, there should be something akin to \w that can match any code-point in Letters or Marks category (not just the ASCII ones), and hopefully have filters like [[P*]] for punctuation etc.

share|improve this question
This doesn't include regular expression support but is useful for Unicode related tasks github.com/joelarson4/CharFunk – joe larson Mar 23 at 16:19

6 Answers

Even though JavaScript operates on Unicode strings, it does not consistently implement Unicode-aware character classes, and has (to my knowledge) no concept of POSIX character classes or Unicode sub-ranges.

Check your expectations here: Javascript RegExp Unicode Character Class tester (Edit: the original page is down, the Internet Archive still has a copy.)

Flagrant Badassery has an article on JavaScript, Regex, and Unicode that sheds some light on the matter.

Be sure to also read Regex and Unicode here on SO. Probably you have to build your own "punctuation character class".

Check out the Regular Expression: Match Unicode Block Range builder, which lets you build a JavaScript regular expression that matches characters that fall in any number of specified Unicode blocks.

I just did it for the "General Punctuation" and "Supplemental Punctuation" sub-ranges, and the result is as simple and straight-forward as I would have expected it:

[\u2000-\u206F\u2E00-\u2E7F]
share|improve this answer
Great tools! Thanks! – JannieT Sep 22 '10 at 5:35
2  
This last tool is great for blocks, but does little when what you want are character types scattered through many blocks (like letters or numbers). See this for a similar approach for this case. – mgibsonbr Feb 1 '12 at 22:09
@mgibsonbr Very neat! :) – Tomalak Feb 1 '12 at 22:21

As mentioned in other answers, JavaScript regexes have no support for Unicode character classes. However, there is a library that does provide this: Steven Levithan's excellent XRegExp and its Unicode plug-in.

share|improve this answer

Having also not found a good solution, I wrote a small script a long time ago, by downloading data from the unicode specification (v.5.0.0) and generating intervals for each unicode category and subcategory in the BMP. Basically it converts \p{...} to a range of values, much like the output of the tool mentioned by Tomalak, but the intervals can end up quite large (since it's not dealing with blocks, but with characters scattered through many different places).

For instance, a Regex written like this:

var regex = unicode_hack(/\p{L}(\p{L}|\p{Nd})*/g);

Will be converted to something like this:

/[\u0041-\u005a\u0061-\u007a...]([...]|[\u0030-\u0039\u0660-\u0669...])*/g

Haven't used it a lot in practice, but it seems to work fine from my tests, so I'm posting here in case someone find it useful. Despite the length of the resulting regexes (the example above has 3591 characters when expanded), the performance seems to be acceptable (see the tests on jsFiddle, each value in ms corresponds to 1000 runs).

Here's the source, and a small test on jsFiddle.

Update: this looks like the same strategy adopted in the XRegExp Unicode plug-in mentioned by Tim Down, except that in this case regular JavaScript regexes are being used.

share|improve this answer

In JavaScript, \w and \d are ASCII, while \s is Unicode. Don't ask me why. JavaScript does support \p with Unicode categories, which you can use to emulate a Unicode-aware \w and \d.

For \d use \p{N} (numbers)

For \w use [\p{L}\p{N}\p{Pc}\p{M}] (letters, numbers, underscores, marks)

Update: Unfortunately, I was wrong about this. JavaScript does does not officially support \p either, though some implementations may still support this. The only Unicode support in JavaScript regexes is matching specific code points with \uFFFF. You can use those in ranges in character classes.

share|improve this answer

I'm not sure which browser has JavaScript with support for \p with Unicode categories, but Firefox definitely doesn't, unfortunately.

share|improve this answer

Try here:

http://inimino.org/~inimino/blog/javascript_cset

I have had a lot of success using this javascript library for unicode regex and it is licensed under the MIT license.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.