I have a rule for matching folder 202004_FooBar on the left, with FooBar on the right:
Left: ......[_-](.*)
Right: $1
This works, but I want to reverse sides.
So I tried:
Left: (.*)
Right: ......[_-]$1
which does NOT work, and I don't understand why.
Left: ......[_-](.*)
Right: $1
This works, but I want to reverse sides.
So I tried:
Left: (.*)
Right: ......[_-]$1
which does NOT work, and I don't understand why.
Comment