I have a line in a .txt file that starts with the word "Words". What I am trying to do now is for the example below to find all the words after "Words" that is before a "(" wich in this case is "One" and "Two". As seen they are separated by ",".
One important notice here is that you never know how many it can be but a maximum of 6 words. So it could ex also be One(1), Two(2), Three(3).
What technique could be used to find these in the Line that start with "Words"
Words: One(1), Two(2);