You are not logged in.
Hi all
Another newbie here.
Can anyone assist with removing a random 12 number sequence (example: 1256-4587-9658) from a file name? The number sequence wont always be in the same position of the file name but will always be in the same format of ****-****-****
Thank you!
Offline
Worked it out via ChatGPT. - _\d{4}-\d{4}-\d{4}
Offline
That's correct.
You can use the Regular Expressions rule to replace "\d{4}-\d{4}-\d{4}" pattern with an empty string.
Offline