I need a regex wich maches strings starting and ending with " but wich aren't containing the word "
MACH: "Hello World"
NOT MACH: "Hello "World"
I already tried with /"([^"]*)"/, but it don't works.
Maybe because it excludes the characters & q u o t and ; but not the word """
please help me...
Thanks