GREP for bolding all numbers (including commas, decimals, and percent signs) EXCEPT years
Hello! I would like to creat a GREP that bolds all numbers (including commas, decimals, and percent signs), but excludes a number that follows the name of a month. I also need one to italicize the phrase "The Movement." Example sentence below:
In August 2024, we wrapped a year of strategic initiatives. Our survey found that 100% of respondents agree or strongly agree that The Movement was a successful film rollout campaign.
I have two character styles and two GREP created:
- bold numbers applied to (\d{1,3}(?:,\d{3})*(?:\.\d+)?%?|\d+(?:\.\d+)?%?
- italicized movement applied to \b(The Movement)\b
when I add a third character style and try different GREP to exclude the August 2024 from bolding, 100% is no longer bolded. any ideas?
