Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

unable to find and replace dollar sign indesign

Engaged ,
Jul 18, 2019 Jul 18, 2019

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:

Capture.PNG

Any guidance would be appreciated.

1.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , Jul 18, 2019 Jul 18, 2019

I see grep search in your screenshot.

The dollar sign in grep search means "End of Paragraph [location]".

Use text search instead

Translate
LEGEND ,
Jul 18, 2019 Jul 18, 2019

$ means something special in GREP, but why not sure why you are using grep at all? Just an ordinary replace (TEXT) should do it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Jul 18, 2019 Jul 18, 2019

I see grep search in your screenshot.

The dollar sign in grep search means "End of Paragraph [location]".

Use text search instead

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Jul 18, 2019 Jul 18, 2019

Yes, thanks so much. i guess i was a bit hasty.

Thank you all

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 22, 2019 Jul 22, 2019
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines