Copy link to clipboard
Copied
Hi
I am working on a table where i wish to remove all the dollar signs.
I am doing the find and replace option, but it does not work.
what could i be missing here.
Screenprint below:
Any guidance would be appreciated.
I see grep search in your screenshot.
The dollar sign in grep search means "End of Paragraph [location]".
Use text search instead
Copy link to clipboard
Copied
$ means something special in GREP, but why not sure why you are using grep at all? Just an ordinary replace (TEXT) should do it.
Copy link to clipboard
Copied
I see grep search in your screenshot.
The dollar sign in grep search means "End of Paragraph [location]".
Use text search instead
Copy link to clipboard
Copied
Yes, thanks so much. i guess i was a bit hasty.
Thank you all
Copy link to clipboard
Copied
Hi ashimg23377171 ,
if you like to find a $ in the text with GREP just use the following pattern:
\$
You are "escaping" the Dollar sign with a back slash, so GREP is searching for a $ in the text.
Alternatively you could also search for the unicode value of the $ that is 0024 with this pattern:
\x{0024}
Regards,
Uwe
Find more inspiration, events, and resources on the new Adobe Community
Explore Now