Use GREP to remove plus symbols and brackets
Hi all!!
I have a document with lots of numbers in it. Some of the numbers are part of copy/paragraphs and some are in tables.
Some of the numbers within the copy have a + after them, and some of them have a + before them. I need to remove all the plus signs that come AFTER a number but not before, and obviously to leave the number (which is always different).
In the tables, some of the numbers have an x before them and the x and the number are in brackets. These bracketed numbers are always in a specific column, but not all the numbers in that column have the brackets.
I need to remove all the brackets in this specific column, leaving all the numbers as they are (again, different numbers). There are however brackets in other columns of the tables which need to stay but do not have the x in them, just a number.
I figured out I can use GREP to FIND all the plus signs after a number with \d\+, but I can't figure a way to remove the +, it just replaces the number with \d and removes the +.
Are either of these things possible or am I trying to push capabilities too far?
Thanks in advance for any help!
