Hi, i have a problem using regex, i want to get all the text between " "

so i try this...

$subject = 'menu "Archer?",-,"Chief?",L_Menu2,"Big Mouth?",L_Menu3;';
if (ereg('"([^"]*)"', $subject, $regs)) {
        print_r($regs);
}

but just return me:

Array
(
   [0] => "Archer?"
   [1] => Archer?
)

not return me Chief and Big Mounth

what is the problem?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to