How to get several identical fields in one string

Hello people, I need a help.

I’m trying to get a lot of information on a page, I need to get all the words that come right after “Roteiro” and “Arte”, each time they appear in my string, how can I do this, I already got the text, what’s missing is treat this text so that I can get the information

Exemplo:

@Diego_Pin

You can use matches activity with regular expressions

(?<=roteiro\: ).*

Select the multiline options from properties panel under regexoptions

Similrly use for arte:

Hope this helps

Cheers