[PHP] Regular help

2005-01-05 Thread UroÅ Gruber
Hello! I'm pulling my hair so please help. I need correct regular expression to get string between " but if I use 2 pair of " must also work "this is" "some kind" "of a test" matches would be this is some kind of a test I hope somebody have and idea, because I can only get one or everything from f

Re: [PHP] Regular help

2005-01-05 Thread John Holmes
Uroš Gruber wrote: I need correct regular expression to get string between " but if I use 2 pair of " must also work "this is" "some kind" "of a test" matches would be this is some kind of a test preg_match_all('/"[^"]*"/',$text,$matches); [^"]* matches anything that is not a double quote -- ---Joh