hi,
Can any one give solution for this using Regular Expression or any other php
functions?
I have the string:
$vStr = ' hi this "Raj Test" regular "expression functions" '
i want split this string using space but any string within the double quotes
you should take as single word.
i want to store an array like this:
$arrVal = ("hi", "this", "Raj Test", "regular", "expression functions")