Sep 30, 2020 09:43 AM
I have a bunch of different strings of text and want to remove different phrases, but I’m unsure of the formula. Here is an example of what it may contain:
123.jpg
234.eps
345.ai
546%20(1).eps
I want to remove every instance of “.jpg”, “.eps”, “.ai” and “%20(1)”
Is there a way to do so?
Solved! Go to Solution.
Sep 30, 2020 09:58 AM
You would need a nested SUBSTITUTE()
formula:
SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE({Field Name}, '.jpg', ''), '.eps', ''), '.ai', ''), '%20(1)', '')
Sep 30, 2020 09:58 AM
You would need a nested SUBSTITUTE()
formula:
SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE({Field Name}, '.jpg', ''), '.eps', ''), '.ai', ''), '%20(1)', '')