Re: [classlib] Requirement: Regex support for \p{javaDigit}

2006-06-28 Thread Richard Liang
That's great! Nik. You're so helpful. Thanks a lot. ;-) Nikolay Kuznetsov wrote: Hello Richard, Thanks for pointing this out. While implementing java character classes I missed the fact that _all_ Character.isXXX methods except deprecated should have corresponding \\p{javaXXX} character class a

Re: [classlib] Requirement: Regex support for \p{javaDigit}

2006-06-28 Thread Nikolay Kuznetsov
Hello Richard, Thanks for pointing this out. While implementing java character classes I missed the fact that _all_ Character.isXXX methods except deprecated should have corresponding \\p{javaXXX} character class analogues. So the the answer to your question whether we should implement javaDigit c

[classlib] Requirement: Regex support for \p{javaDigit}

2006-06-28 Thread Richard Liang
Hello All, I'm trying to implement java.util.Scanner.nextInt, which requires a regular expression pattern to represent "Integer". I find it's hard to express /NonASCIIDigit /because now Harmony regex does not support /NonASCIIDigit/. As our regex has supported "\p{javaLowerCase} Equival