I have this pattern:
(\w+)(sin|in|pak|red)$
And the replacement pattern is this:
$1tak
The problem is that this word:
setesin
will be transformed to:
setestak
instead of
setetak
For some reason, in
always takes precedence to sin
in the pattern.
How can I enforce the pattern to follow that order?