Search found 2 matches

by APC
Thu Nov 25, 2004 11:00 am
Forum: General
Topic: TextPad regexp only allows nine back references
Replies: 6
Views: 756

Why do you need more than nine? You are only referencing four in your example. Because the source string contains lots of parameters, and I only wanted a subset of them. Can you rewrite your expression without all the extra paratheses? Yes but it took more than one pass to pick up everything ...
by APC
Wed Nov 24, 2004 5:38 pm
Forum: General
Topic: TextPad regexp only allows nine back references
Replies: 6
Views: 756

TextPad regexp only allows nine back references

I have been trying to use RegExp to extract a simpler line of code out of a more complicated one. Using the RegExp Coach to test my pattern matching this line successfully formats my code using the second, fourteenth, seventeeth and fifth groups match. ERROR.LOG(\2, \14, \17, \5); which should do ...