A regexp that will grab anything in quotes + the word draft within the quotes. So it will look for the word Draft and upon finding it grab everything in front of it and behind it within the quotes. For example:
1) "earth is beautiful"
2) "My Second Draft"
In the above examples the regexp will only grab the second example, highlighting everything within the quotes. How can this be accomplished?
Thank you.