Thanks again Ernest! This will be extremely helpful to me in the near
future.

- Nilaab

> -----Original Message-----
> From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED]]
> Sent: Friday, November 22, 2002 3:23 PM
> To: @ Nilaab
> Cc: Php-General
> Subject: RE: [PHP] Simple RegExp Problem...
>
>
> At 21:59 22.11.2002, @ Nilaab said:
> --------------------[snip]--------------------
> >Thanks so much!!! It works. I didn't know I could also place extra
> >characters inside the brackets to specify what I want.  :)
> --------------------[snip]--------------------
>
> The square brackets simply form a group of characters that are either
> allowed ('[abc]') or not allowed ('[^abc]').
>
> Instead of specifying '/[a-zA-Z]/' you have also the option of saying
> '/[a-z]/i', the i modifier making the whole regex case independent.
>
> For deeper regex insights (esp. for the preg_xxx functions which I
> personally prefer) I suggest visiting the Perl docs at
> Doc:        http://www.perldoc.com/perl5.8.0/pod/perlre.html
> QuickIntro: http://www.perldoc.com/perl5.8.0/pod/perlrequick.html
> Tutorial:   http://www.perldoc.com/perl5.8.0/pod/perlretut.html
>
> For the PHP guyz'n gals listening - I suggest these links making it into
> the PHP docs :)
>
> --
>    >O     Ernest E. Vogelsinger
>    (\)    ICQ #13394035
>     ^     http://www.vogelsinger.at/
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to