[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [string.gmatch] Getting rid of parentheses?
- From: Gilles Ganault <gilles.ganault@...>
- Date: Mon, 25 Jul 2011 12:53:58 +0200
On Mon, 25 Jul 2011 10:00:50 +0100, Rob Kendrick <rjek@rjek.com>
wrote:
>Don't include the parentheses in the capture. The trouble you have here
>is that you're matching everything between the <br> tags and capturing
>it, because parentheses describe what to capture. You can escape with
>%:
Thanks guys, problem solved.