[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Backreferences in rex.gsub
- From: Jamuse <jamuse@...>
- Date: Thu, 2 Sep 2010 16:47:34 +0300
I'm trying to access a backreference (via %1) captured in parenthesis, as shown below:
value = rex.gsub(value, "(?:(.{2,})%1{32,})", "x", nil, 0, 0);
What is the correct syntax for accessing captured data in rex.gsub?
Thanks,
- J