Using the RegExp Coach to test my pattern matching this line successfully formats my code using the second, fourteenth, seventeeth and fifth groups match.
Code: Select all
ERROR.LOG(\2, \14, \17, \5);Code: Select all
ERROR.LOG('APC', 'MAIN', 'Some Text', 'E');Code: Select all
ERROR.LOG('APC', 4, 7, 'E');So, does TextPad have this limit on the number of back references or is there some workaround?
Cheers, APC