Hi, let say I have a value that is like this
-112324-A
How do I use Regex replace to make the result look like this?
112324-A
Thanks in advance
Solved! Go to Solution.
Regex formula would be
REGEX_Replace([Field1], ".(.*)", "$1")
Workflow:
Hope this helps : )
You can also do it without regex. The below method might give better performance.
Workflow:
Hope this helps : )
Hi @terrellchong just adding other options to the two which @atcodedog05 has given, but you can use the substring function here as well
Substring([field],1)
edit: I did a performance comparison of the 3 methods, and I would avoid using RegEx here, but there isn't much between using Substring() and Right()