You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by "Gabriel Belingueres (JIRA)" <ji...@apache.org> on 2006/07/14 14:29:14 UTC

[jira] Commented: (VALIDATOR-196) GenericValidator#matchRegexp

    [ http://issues.apache.org/jira/browse/VALIDATOR-196?page=comments#action_12421100 ] 
            
Gabriel Belingueres commented on VALIDATOR-196:
-----------------------------------------------

I think it is not a bug.

ORO Regexp require you to put a beginning and trailing slash to the expression:

GenericValidator.matchRegexp("as*&^%dfasd1314213","/[a-zA-Z0-9]*/")

I think the ORO dependency will be removed to Java 1.4 own regexp implementation instead, but I don't know when will be happening.

Gabriel

> GenericValidator#matchRegexp
> ----------------------------
>
>                 Key: VALIDATOR-196
>                 URL: http://issues.apache.org/jira/browse/VALIDATOR-196
>             Project: Commons Validator
>          Issue Type: Bug
>    Affects Versions: 1.3.1
>         Environment: Windows 2000 ; J2SDK 1.4.2 ; Eclipse 3.1.2
>            Reporter: lutianxiang
>
> GenericValidator.matchRegexp("as*&^%dfasd1314213","[a-zA-Z0-9]*");
> User this method cannot get FALSE value
> In this method Source like this...
> .........
> return matcher.match("/" + regexp + "/", value);
> should be 
> ..........
> return matcher.match("//" + regexp + "//", value);

-- 
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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org