Re: [string.gmatch] Getting rid of parentheses?
[
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: 2011年7月25日 12:53:58 +0200
On 2011年7月25日 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.