I have a GREP command:
(?<=say).+.".+?"
It finds all lines that have say (but doesn't include it), quoted words and characters between it.
It would like to make a change only to the quoted words (not the characters in between) but
(?<=say)(?<=.+.)".+?"
this doesn't work.
Here an example of the text I need to change:
I spoke to the Captain, saying: "Sir, I would like to home".
...to say, "This is the way".
Which should be changed into this by GREP command:
I spoke to the Captain, saying: "Sir, I would like to home".
...to say, "This is the way".
Could someone help me?