Hi we are trying to truncate the first 5 characters of a field and for some reason the Replace via Regular Expression processor doesn’t seem to ‘work”
We have tried:
^(.{1,5})(?:|$)
Regex101.com seems to match it correctly

and which replaces the first 5 characters with blank so then we tried this
^.{5}(.*)
which seems to replace all of it with a blank…
Help please.
If anyone can create a small library of useful regex strings for use that would be really appreciated!