If the string is:
"Vehicle": "1992 Macho Camry CE"
Here is the regex:
preg_match_all("/: \"?([\w ]+)/", $str, $matches, PREG_PATTERN_ORDER);
Then call
print_r($matches);
Which will return:
Array
(
[0] => Array
(
[0] => : "1992 Macho Camry CE
)
[1] => Array
(
[0] => 1992 Macho Camry CE
)
)
To get the string, use:
$phrase = $matches[1];
edit:
Because of the source data is a json string, use the json_decode function to convert all data in array:
$str = '[{"Vehicle": "1992 Macho Camry CE"}, {"Vehicle": "2017 OtherCar"}]';
$vehicles = json_decode($str, true);
print_r($vehicles);
Array
(
[0] => Array
(
[Vehicle] => 1992 Macho Camry CE
)
[1] => Array
(
[Vehicle] => 2017 OtherCar
)
)