You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/08/11 04:51:15 UTC

[jira] Commented: (HARMONY-713) java.util.regex.Matcher.find() ignores the specified region when the pattern is "c"

    [ http://issues.apache.org/jira/browse/HARMONY-713?page=comments#action_12427399 ] 
            
Richard Liang commented on HARMONY-713:
---------------------------------------

Hello George,

Thanks a lot. The fix looks good.

Best regards,
Richard

> java.util.regex.Matcher.find() ignores the specified region when the pattern is "c"
> -----------------------------------------------------------------------------------
>
>                 Key: HARMONY-713
>                 URL: http://issues.apache.org/jira/browse/HARMONY-713
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Richard Liang
>         Assigned To: George Harley
>         Attachments: regex.src.diff, region.patch
>
>
> Hello Nik,
> java.util.regex.Matcher.find() ignores the specified region when the pattern is "c".
> The following test pass on RI, but fail on Harmony. I will attach the test for regression soon :-)
>     public void testFindRegionChanged2() {
>         Pattern pattern = Pattern.compile("c");
>         String inputStr = "aabb.c";
>         Matcher matcher = pattern.matcher(inputStr);
>         matcher.region(0, 3);
>         
>         assertFalse(matcher.find());
>     }
> Best regards,
> Richard.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira