How to find all double quote substrings in a string with PHP

1 Answer

0 votes
$str = 'This is a string with "double-quoted substring1", and "double-quoted substring2" inside.';

// Regular expression to match substrings within double quotes
$pattern = '/"([^"]*)"/';

// Find all matches
preg_match_all($pattern, $str, $matches);

// Extract the substrings
$substrings = $matches[1];

print_r($substrings);



/*
run:

Array
(
    [0] => double-quoted substring1
    [1] => double-quoted substring2
)

*/

 



answered May 12, 2025 by avibootz
edited May 12, 2025 by avibootz
...