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

GREP Find/Change - how to change mixed uppercase to lowercase?

Explorer ,
Jan 11, 2016 Jan 11, 2016

I'm doing some final proofreading and correcting some text in a book I've helped design.

I've had some success using GREP Find/Change.  But I can't get it to work in the following case.

What I want to do is find all instances of 'Nature' and change them to 'nature'. (Simple uppercase to lowercase substitution.)

BUT I want to exclude any instances of 'Mother Nature'. (Keep uppercase 'N' in Nature.)

According to Adobe help, I ought to be able to use a Negative Lookbehind expression.  I've tried typing in the Find box... Nature(?<!Mother )

But it finds everything... 'nature', 'Nature', 'Mother Nature', which isn't much help.

Can somebody please tell me where my mistake is and how to correct it?

TOPICS
Scripting
645
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

Community Expert , Jan 11, 2016 Jan 11, 2016

Find: (?<!Mother )Nature

Replace with: nature

Peter

Translate
Community Expert ,
Jan 11, 2016 Jan 11, 2016

Find: (?<!Mother )Nature

Replace with: nature

Peter

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
Explorer ,
Jan 11, 2016 Jan 11, 2016
LATEST

Doh!  I knew it had to be something simple, possibly punctuation or a space.

But I completely overlooked the obvious (in hindsight).

Thanks, Peter... that was driving me nuts!

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