I have a couple of questions about regex use in MultiRename
(?:[0-9a-z]{30})should match string:-
0ec4dc9a5ea17339b06d1d0f1b2283but doesn’t find it whether alone or placed in a longer string.
Test page on regex101.com shows it works in both instances eg:
(?:[0-9a-z]{30}) /gm
Non-capturing group (?:[0-9a-z]{30})
Match a single character present in the list below [0-9a-z]
{30} matches the previous token exactly 30 times
0-9 matches a single character in the range between 0 (index 48) and 9 (index 57) (case sensitive)
a-z matches a single character in the range between a (index 97) and z (index 122) (case sensitive)
Multiple search matches when
| separated eg:-
(abc|zxy|der)won’t work, each element needs to be separately entered on an individual line.
Is this expected behaviour?
I checked the regex's work online so I'm wondering what is different.