My program should find Console.WriteLine("
in the source text box and start reading the string just after the "
until it finds a ")
, and then store the captured string in a variable. For example, if the input is:
Console.WriteLine("Hello World")
Then the variable's value should be Hello World
.
Help would be appreciated.