I would like to remove height property from all my images in my database. Their markup is as follows:
<img src="path/img.jpg" width="x" height="y" />
I was going to do something like this:
UPDATE jos_content SET introtext = REPLACE(introtext, 'height=".*"', '');
But I don't know how to use regular expressions in MySQL query. I did find out they exist, I just don't se how I can use them in this context.