Skip to main content
Participating Frequently
October 15, 2009
Answered

Making Find/Replace Case Sensitive

  • October 15, 2009
  • 1 reply
  • 937 views

I am using the basic find/replace script that comes with CS4

How do I fix these so the returned "yd³"  does not come back as Yd³ ?  I want to make the these find/replace's case sensitive.  Lower case "in" lower case "out".   Upper case "IN" upper case "OUT".

text {findWhat:"cu.yd."} {changeTo:"yd³"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all dash-dash and replace with an em dash.
text {findWhat:"cu.yd"} {changeTo:"yd³"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all dash-dash and replace with an em dash.
text {findWhat:"cu yd"} {changeTo:"yd³"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all dash-dash and replace with an em dash.
text {findWhat:"cu.yd"} {changeTo:"yd³"} {includeFootnotes:true, includeMasterPages:true, includeHiddenLayers:true, wholeWord:false} Find all dash-dash and replace with an em dash.

Thank you all in advance.

Bill Bernhardt

DOOSAN Publications

770-831-2249

This topic has been closed for replies.
Correct answer Peter Kahrel

Add caseSensitive:true to the list of options.

Peter

1 reply

Peter Kahrel
Community Expert
Peter KahrelCommunity ExpertCorrect answer
Community Expert
October 15, 2009

Add caseSensitive:true to the list of options.

Peter

Participating Frequently
October 15, 2009

"Your a good man Charlie Brown!"

That did it! Thank you very much.