3

Is there a good tutorial available for changing ASCII regular expressions to Unicode regular expressions? I need to convert existing a US English application to support internationalization.

CharlesB
  • 86,532
  • 28
  • 194
  • 218
tom
  • 61
  • 1
  • 2
  • Hey, you could always ask a question here: This is my ASCII-only regex - what do I need to do to make it Unicode-ready? Another vital question, by the way: Which Java version are you using? Before Java 7, Unicode support in regexes [is, let's say, incomplete](http://stackoverflow.com/questions/4304928/unicode-equivalents-for-w-and-b-in-java-regular-expressions). – Tim Pietzcker Sep 02 '12 at 14:29
  • just use this \P{Cn} – Bashar Abu Shamaa Mar 19 '15 at 12:22

1 Answers1

3

Regular-Expressions.info has some pretty good info. Here is probably a good start.

Jeremy Roberts
  • 1,208
  • 8
  • 19