-3

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.

nonino_k
  • 11
  • 3

1 Answers1

1
\(\"(.*)\"\)

This regex will save into a capture group the text between (" and ")

Try it out here with your text.

Let me know if this helps!

Shawn Tabrizi
  • 12,206
  • 1
  • 38
  • 69