is there support of RegularExpressions for i18n ?

im asking about this : can i make regular expresion like [A-Z] in some other language ( cyrillic language ) ? is there somethink like [?荾 :) i know that there is not thinks like this but is there some api or somethink that supports this ?
[252 byte] By [JOKea] at [2007-10-2 12:54:42]
# 1

You can specify Unicode blocks with \p{UnicodeBlockName}

The block names are those defined in Chapter 14 and in the file [url=http://www.unicode.org/Public/3.0-Update/Blocks-3.txt]Blocks-3.txt[/url] of the Unicode Character Database except that the spaces are removed; "Basic Latin", for example, becomes "BasicLatin".

Note that you can specify any character range [x-y] as long as unicode value of y is greater than the one for x.

Note that you can specify a range by giving unicode values: [a-z] is equivalent to [\u0061-\u007A].

TimTheEnchantora at 2007-7-13 10:09:34 > top of Java-index,Desktop,I18N...
# 2
lol very nice thanks it works :)
JOKea at 2007-7-13 10:09:34 > top of Java-index,Desktop,I18N...
# 3
> lol It wasn't a joke ;-P
TimTheEnchantora at 2007-7-13 10:09:34 > top of Java-index,Desktop,I18N...