I have a string:
This is a text, \"Your Balance left $0.10\", End 0
How can I extract the string in between the double quotes an
Try this :
preg_match_all('`"([^"]*)"`', $string, $results);
You should get all your extracted strings in $results[1].