Re: [classlib][regex] Is this a issue of java.util.regex.Matcher.region(int, int);

2006-07-27 Thread Nikolay Kuznetsov
Hello Spark Shen, It seems that Matcher.region(int, int) will not have any effects when called. This can be demonstrated by the following test case there is an issue quite similar to one you have raised filled by Richard: http://issues.apache.org/jira/browse/HARMONY-759 I'll try to provide a

Re: [classlib][regex] Is this a issue of java.util.regex.Matcher.region(int, int);

2006-07-27 Thread Spark Shen
Nikolay Kuznetsov 写道: Hello Spark Shen, It seems that Matcher.region(int, int) will not have any effects when called. This can be demonstrated by the following test case there is an issue quite similar to one you have raised filled by Richard: http://issues.apache.org/jira/browse/HARMONY-759

[classlib][regex] Is this a issue of java.util.regex.Matcher.region(int, int);

2006-07-26 Thread Spark Shen
Hi All: It seems that Matcher.region(int, int) will not have any effects when called. This can be demonstrated by the following test case: public void test_RegionII() { CharBuffer buffer = CharBuffer.wrap(new char[] { 'a', 'a', 'b', 'b', '.', 'c' }); Matcher

Re: [classlib][regex] Is this a issue of java.util.regex.Matcher.region(int, int);

2006-07-26 Thread Spark Shen
Spark Shen 写道: Hi All: It seems that Matcher.region(int, int) will not have any effects when called. This can be demonstrated by the following test case: public void test_RegionII() { CharBuffer buffer = CharBuffer.wrap(new char[] { 'a', 'a', 'b', 'b', '.', 'c' }); Matcher matcher =