I want to drop the first or last character only if it is '/' or any special character.
Example:
Tom/Bob
/Bob
/
goes to:
Bob
Thanks
REGEX_REPLACE([field1],'^\W?(.*)\W?$','$1')
This will trim any non alpha-numeric's at the beginning or end of your string
@Brad1
May not need regex for this. The expression below should work.
TRIM([Field], '/')JimmyTeknion Data Solutions
Perfect, thx.