Copy link to clipboard
Copied
Hi there,
I'm trying to select some parts of a paragraph using GREP. I have a textbox with two paragraphs, and I like to style the last part differently. To be exact, everything that came after the word "Graphem-" till the end of the paragraph.
That is what it currently looks like for me.
Can anyone help?
Thanks
Add this to your GREP: (?s)
By the way, you forgot the hyphen in your GREP
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Use this as your GREP termā¦
(?<=Graphem-).+
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Add this to your GREP: (?s)
By the way, you forgot the hyphen in your GREP
Copy link to clipboard
Copied
Copy link to clipboard
Copied