I have a small, yet annoying problem with regex. The input string (C#) to parse is like the following:
( "Lorem ipsum dolor, sit amet" + "Maecenas fermentum commodo leo.", "aaa", 120 )
I want regex to match string between first " and before first comma that is after " so I want to find:
Lorem ipsum dolor, sit amet" + "Maecenas fermentum commodo leo.
So far I came up with:
\(\s*?\"(.*?)\".*?\)
but the result is:
Lorem ipsum dolor, sit amet
Any help will be appreciated!