Hello everyone!
Just wondering if anyone knows how to add a space before every occurrence of a "(" that is directly attached to a word without a space?
For example:
Amanda does not have a space before "(", so we should add one space for her, while Eric remains as it is:
Student Info | Updated Student Info |
Eric (12345) | Eric (12345) |
Amanda(45678) | Amanda (45678) |
Thank you in advance 😍
Solved! Go to Solution.
something like this?
REGEX is the quickest and most succinct for a one tool solution, however you can make it more "explainable" with the below:
The REGEX replace in the regex tool would be something like ([A-z])(\() with Replacement Text being $1 \( if you wanted to go that way.
Note: Sorry I just noticed this is tagged Designer Cloud. I'm not totally sure the above will work in Designer Cloud as I don't know the product, but my answer is relevant to Designer Desktop.
Both methods work perfectly!
Thank you all so much 😍
User | Count |
---|---|
18 | |
16 | |
14 | |
6 | |
5 |