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 and have only the text (without the double quotes):
Your Balance left $0.10
I have tried preg_match_all()
but with no luck.
s($str)->between('"', '"')
helpful, as found in this standalone library. – Kosygin