When using \modifiers\ (like \regex\ or \start\) they cannot be terminated.
I experimented with things like \stop\, but so far nothing stops any of these modifiers.
This was the same as in previous versions, so maybe its really a feature instead of of a bug?
Either way, users must be careful to NOT use \regex\ if wanting different replacements!
If needing different replacements for some ending-text, can use a 'Replace' and 'With' like...
\end\12|34|56
ab|cd|ef
12-Name-12 -----> 12-Name-ab
34-Name-34 -----> 34-Name-cd
56-Name-56 -----> 56-Name-ef
But trying with \regex\ fails since regex uses '|' for 'OR' (so Replace(3) cant use '|' for 'next-replacement').
So if trying to conduct those same replacements as above, using a 'Replace' and 'With' something like...
\regex\12$|34$|56$
ab|cd|ef
12-Name-12 -----> 12-Name-ab|cd|ef
34-Name-34 -----> 34-Name-ab|cd|ef
56-Name-56 -----> 56-Name-ab|cd|ef
Again, many thanks for the latest improvements!