in reply to Re: use of constants in regex substitutions?
in thread use of constants in regex substitutions?
That won't work, because the /e modifier only applies to the second part of the substitution (i.e. the 'substitute with...' part). The first part of the regex follows normal string-interpolation rules, and "&sub" is NOT interpolated in a string any more than "sub" is. This regexp looks for the literal text '&TXT_EXTENSION', and substitutes it with '.mif'.
See Zazo's reply for a correct answer.
--
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: use of constants in regex substitutions?
by dmitri (Priest) on Sep 23, 2003 at 13:59 UTC | |
by edan (Curate) on Sep 23, 2003 at 14:32 UTC |