InDesign GREP Style caps question
- Started
- Last post
- 5 Responses
- DrFukenhot
I'd like to capitalize the "h" and "w" in phrase "hello world" but not in instances where "hello" and "world" appear independently.
So far, (h|w)(?=(ello|orld)) capitalizes EVERY "h" and "w" found in "hello" or "world".
How do i confine that to the phrase "hello world"?
- pumpaction0
1-find : hello world
2-change to : Hello World
3-profit
- doesnotexist0
find and replace "hello world" to "Hello World" case sensitive
- drgs0
replace "hello world" case insensitive with "Hello World"
- DrFukenhot0
Thank you but i know about the "find and replace" window. It's not exactly what i'm looking for.
I'm wondering if there's a way to program in with GREP styles so I don't (or worse yet, some other designer in my department doesn't) have to remember to DO the "find and replace" at the end of the project.
the GREP style would take care of it automatically/programmatically.
- < this is the smart man's way of doing it. Good on you. Find/replace leaves room for error.Gucci
- ********0
you can set up a style, no?