Ok, you guys have already helped me immensely with formatting some of my more complicated GREP that I've thrown at you, so i thought i'd see if you'd try your hand at 2 more that i'm trying to write that have me blocked.
Example:
Size (waist/inseam): (06)brown 30 32 34 36/30 32 34 36/32 30 32 34 36 38/34, (10)navy 30 32 34 36/30 32 34 36/32 30 32 34 36 38/34
and so forth. i've got a code for the (waist/inseam) part, what i'm looking for is a part that will bold the numbers you see listed ONLY in paragraphs that contain the (…/…) pattern as well. what i started with is something like:
(?<=(.+?/.+)dd but i don't even have a clue where to go from there
2nd problem:
Inseam Regular 30″ Long 32″ X-Long 34″.
I want to look for a sentence that starts with Inseam, and bold every word in that sentence that precedes a number. Any ideas?
Also, looking for a GREP find/change to search for any lower case letters at the beginning of a paragraph and change them to uppercase. can this be done? Another i'd like to add is to find any formatting that's not a char or paragraph style and clear it. Lastly, i'd like to construct a grep find/change for any spaces or returns at the end of the story and remove those. Once again, thanks so much for your help.