I had a problem where I am looking for the same text multiple times on a webpage. I do not know how many times the text will appear and every time it does appear I must extract the words after the text.
Ex: Looking for “Name”
Name John Name Cameron Miller
Name Alex Jones
I am not sure how to do this and any help would be appreciated!
When you have webpage as text already maybe try to use Matches Activity.
As the output you will get a collection of the results after Regex Matches. Then, when you have a collection, just use For Each Loop to extract all results.