|
Posted by kenleycapps on 01/28/07 02:01
If you're looking to interactively test regex, why not use something
like Regex Coach? http://weitz.de/regex-coach/
Very good tool. I can't live without it. Windows only though, as far
as I know.
On Jan 26, 2:01 pm, mvand...@gmail.com wrote:
> Regex reference:http://en.wikipedia.org/wiki/Regular_expression
> It basic but it works.
>
> 'ca?t' translated in to English:
>
> find the string 'ct' or 'cat'
>
> ? - match 1 or 0 occurrences
>
> + - match 1 or more occurrences 'cat' 'ca...at'
>
> * - match 0 or more occurrences 'ct' 'cat' 'ca...at'
>
> There is more but see the link above.
Navigation:
[Reply to this message]
|