I have a HTML string containing regular HTML with ID:s and classes in the following way:
<div id="my_id"></div>
I want to use a preg_replace in PHP to minify the strings in this way:
<div id=my_id></div>
In other words I want to remove the wrapping quote characters. How do I do this?