Copier le lien dans le Presse-papiers
Copié
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
Copier le lien dans le Presse-papiers
Copié
$ means something special in GREP, but why not sure why you are using grep at all? Just an ordinary replace (TEXT) should do it.
Copier le lien dans le Presse-papiers
Copié
I see grep search in your screenshot.
The dollar sign in grep search means "End of Paragraph [location]".
Use text search instead
Copier le lien dans le Presse-papiers
Copié
Yes, thanks so much. i guess i was a bit hasty.
Thank you all
Copier le lien dans le Presse-papiers
Copié
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
Trouvez plus d’idées, d’événements et de ressources dans la nouvelle communauté Adobe
Explorer maintenant