I am currently setting up a workflow to rename and move some shortcuts. I'm stuck on the regular expression part that I need to capture the piece of the original shortcut name that will remain in the filename.
Ex: The initial shortcut is named "3 Pending Certification Smith, Bob 123456 - Property"
where "3 Pending Certification " is static text, "Smith, Bob" is a token for the client's name, "123456" is a token for an ID number, and "Property" is a token for a property name. The goal is to rename the shortcut to be just "Smith, Bob 123456 - Property"
How can I accomplish this? To put it simply, I only need to remove the first 24 characters of the entry name.
Thanks!