(Even though it's fixed, & even though I really haven't done much renaming with 1348 [which is odd]...)
Old: 42_06*
New: 42_06$1:x
Even something so simple as appending an 'x' to the name,
i know exactly what i want to do, i know exactly how it
works, but then i see, "42_06$1:" & i'm like, "what is that?"
Bulk Rename Utility has 3 "RegEx" methods; what they call "plain", "simple", & "v2".
"plain" is PERL 5 (PCRE)
"simple" is %1..%9, just like Everything < 1348 (& now >= 1349)
"v2" is a superset (if you will) of "plain" (additional features)
with 1348, even if the * were enclosed in parens, (*), that would help - some,
to make it more apparent what is being matched, where (but even then still not
as clear as the "simple" %1...)
& then entire $ dollar 1 one : colon construct, is simply, simply, simply,
not simple, & you have to look & look & look & say, huh, & huh & huh, &
think & ponder & check... "simple" has flown out the door.
to reverse fields & you tell any layman
%1 - %2
->
%2 - %1
& they'll understand that. they will have no clue in China what any of it
means, but they can understand, oh, all i need to do is find the common
parts & some separator (differentiator) & flip their order - cool, i can do that
but if you tell them, oh, i don't even know what?
* - *
->
$2: - $1:
(i literally have to stop & think what i'm writing, above)
they're like huh?
& then they're like so * == $1 & * == $2, so * == *,
& oh, that's new math, like they teach in schools these days
(& is any wonder they cancel/postpone graduation - because
they don't have enough people to merit a graduation)
(& i write this, not even knowing if in fact * - * is a "thing", but, i'll see...
so, yes, it is [as i stumble my way through this])