I have a line of string and I need to find the words after a specific keywords and double Quote Character.
Example:
The input string is 'Dim lsParameter as string = Parameters("ThisValue")'
The expected result is ThisValue
I need to save whatever string between keyword 'Parameters("' and '")'. Any kind of clue is appreciated. Thank you.