M. Sokolewicz wrote: > 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('/"(.+)"/U', $string, $result);
If the text between quotes can include newlines, you'll want to use
preg_match_all('/"(.+)"/Us', $string, $result);or what I replied with in my other post. :)
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

