You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nikolay Kuznetsov (JIRA)" <ji...@apache.org> on 2006/06/21 16:24:30 UTC

[jira] Commented: (HARMONY-625) java.util.regex.Matcher.find() fails when formatting pattern is ("(?s).*")

    [ http://issues.apache.org/jira/browse/HARMONY-625?page=comments#action_12417119 ] 

Nikolay Kuznetsov commented on HARMONY-625:
-------------------------------------------

The problem here is that matchers right bound set by region method some times is not being taken into account while matching or finding.
This is duplicate of the HARMONY-610 issue, which I've updated with the fix.

> java.util.regex.Matcher.find() fails when formatting pattern is ("(?s).*")
> --------------------------------------------------------------------------
>
>          Key: HARMONY-625
>          URL: http://issues.apache.org/jira/browse/HARMONY-625
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Richard Liang

>
> Hello,
> java.util.regex.Matcher.find() ignores the specified region when formatting pattern is ("(?s).*"). RI 5.0 passes the following test, but Harmony fails.
> public void test_find()  {
>         Pattern pattern= Pattern.compile("(?s).*");
>         
>         Matcher matcher=pattern.matcher("abcde");
>         matcher.find();
>         assertEquals("abcde",matcher.group());
>         
>         matcher=pattern.matcher("abcde");
>         matcher.region(0, 2);
>         matcher.find();
>         assertEquals("ab",matcher.group());    
> }
> 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