[Radiant] Radiant and regexp

2009-04-14 Thread N. Turnage
Is there any good reference to the way that Radiant uses regular expressions for page links? For example, this kind of thing: r:if_url matches=^/.+ I don't know how deep /.+ will work, etc. ~Nate ___ Radiant mailing list Post:

Re: [Radiant] Radiant and regexp

2009-04-14 Thread Michael Kessler
Have a look here: http://www.regular-expressions.info/repeat.html .+ is called greedy and means it will try to repeat as much as possible .+? is called lazy and means it will try to repeat as few as possible The same works for .* On 14 Apr 2009, at 11:37 PM, N. Turnage wrote: Is there any