|
Posted by Curtis on 01/13/07 13:30
Here's an interesting tutorial from regular-expressions.info
http://www.regular-expressions.info/tutorial.html
On Jan 12, 4:25 am, "Gayatri" <gayatri.khor...@gmail.com> wrote:
> thanx
>
> --
> Regards,
> Gayatri M. Khorate.
>
> On Jan 12, 5:08 pm, "Rik" <luiheidsgoe...@hotmail.com> wrote:
>
> > Gayatri wrote:
> > > what does the flwg rule mean in regular expression:
>
> > > ([^#].*)( start of capture
> > [^#] any (single) character that is not '#'
> > .* any character zero or more times, untill the next linebreak
> > (unless the /s modifier is used, in which case it's untill the end, or last
> > match of a following pattern. Check out the difference between greedy and
> > ungreedy)
> > ) end of capture.
>
> > Grtz,
> > --
> > Rik Wasmus
[Back to original message]
|