Multiline Test string:
dkdkdkdk dkdkdkdk dkdkdkd dkdkdkd "hello" dkdkdkdkdk dkdkdk "goodbye.hello" dkdkdkd kdkdkd kdkdkdk "hello.goodbye.hello" dddd "test" ssss "http:x-y.f/z/z" "" "."
"http:/dkdkd/dkdkdk/dkdkdkdkdkdk.g"
I want to match every quoted string that contains "hello
"
This matches every quoted string
\"(.+?)\"
This matches every quoted string that contains hello in it
\"(.*?)hello(.*?)\"
But this, does not match every quoted string that DOES NOT contain hello
\"(.*?)(?!hello)(.*?)\"
Thanks for any help!