I current have this regex
"[^"]*"
I am testing it againts this string (i am using http://regexpal.com/ so it has not been string encoded yet!)
"This is a test \"Text File\"" "This is a test \"Text File\""
Currently it is matching
"This is a test \"
""
"This is a test \"
""
I would like it have the following matches
"This is a test \"Text File\""
"This is a test \"Text File\""
Basicly I want it to match something that starts with " and ends with " but ignore anything in the middle that is \". What do i need to add to my regex to acheive this?
Thanks in advance