Re: How can I substitute a string which contains native chars?

"Daniel F. Savarese" <[email protected]> Thu, 11 Jul 2002 12:34:29 -0400
Newsgroups gmane.comp.jakarta.oro.user
Message-ID <[email protected]>
In message <[email protected]>, Alexey Aphanasyev writes:
>"AwkMatcher only supports 8-bit ASCII. Any attempt to match Unicode
>values greater than 255 will result in undefined behavior."
>
>It that the case?

Yes.

>Is there any way to solve my problem?

Not if you want to use the awk package.  However, if you're not restricted
to awk, use the Perl classes instead.  For the code snippet you included,
none of your code would change except changing AwkCompiler to PerlCompiler
AwkMatcher to PerlMatcher and import org.apache.oro.text.awk.* to
import org.apache.oro.text.perl.*

daniel