Quoting Radha Sangal <[EMAIL PROTECTED]>:

> Could someone help me build regular expression for a string like this
> 1,6,3,2.
> 
>  
> 
> I am getting error if I write it like this String patternStr =
> "([0-9]+","+[0-9]+","+[0-9]+","+[0-9] + )";
> 
> 

wouldn't this work?

[0-9]+(,[0-9]){3}


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to