Re: Regex for extracting quoted strings

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Mark Kelly wrote:
Hi.

I'm hoping someone can help me extract text between double quotes from a string.

$regex = 'some magic';
$r = preg_match($regex, $sentence, $phrases);

So, if $sentence = 'Dave said "This is it". "Nope, that is the wrong colour" she replied.';

I want $phrases to contain 'This is it' and 'Nope, that is the wrong colour'.

Can anyone help?

$regex = '/"(.*)"/imU';
$r = preg_match_all($regex, $sentence, $phrases);


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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux