I want to run a workflow that will examine an ID field and remove bad data. Examples of data that could be in this field are
2490 (good data)
2490_invoice (bad data)
+@clientname (bad data)
Is there a way in workflow that I can create a token that would find the underscores in the ID and remove the underscore and anything after it? As you can tell from the example, I also need to find ID's that start with a plus and completely remove those as well.
My thought, but I was hoping someone could confirm this for me is I could use "Remove At" and if I have one Remove At set to remove at index underscore that would remove all underscores and anything after it. I also thought I could use another Remove at set to remove at index plus sign and that would remove anything that starts with a plus sign.