Remove Characters Before /
Here's my value 12/007365121440. I'm trying to remove the characters before the /. I tried using a regexReplace and a regexMatch, but I'm having a hard time understanding what the full Handlebar should be. Any suggestions?
0
Comments
Hey Jack
As per my understanding, you want everything to be removed before forward slash "/"
This below handlebar I have used to replace everything before "/" with empty string
Let me know if I am interpreting it incorrectly.
Regards,
Lakhan Bhagnani
I tried {{regexReplace $.LineInformation.ExtendedDesc '' '.*\/'}} and got this
And yes, you are interpreting correctly!
Hey Jack,
Removing all the PII, can you paste the Mock Data here? As per the error message, it means that the field you referenced doesn't exist in the data.
Regards,
Lakhan Bhagnani
Jack,
If you just want the data after the / then I would suggest using the SPLIT function
{{split myData "/" 1}}
That did exactly what I needed it to. Thanks!
Please sign in to leave a comment.