How do you use a single character PHP Wildcard to make a String Replacement?
I need to make a string replacement in the following lines of code:
<img src="http://mydomain.com/image-1.jpg" alt="image 1"></a>
<img src="http://mydomain.com/image-2.jpg" alt="image 2"></a>
<img src="http://mydomain.com/image-3.jpg" alt="image 3"></a>
<img src="http://mydomain.com/image-4.jpg" alt="image 4"></a>
I want to replace the following string within all of the above lines:
alt="image *"></a>
where the * wildcard represents a number, with the following greater-than sign:
>
To yeild the following results:
<img src="http://mydomain.com/image-1.jpg">
<img src="http://mydomain.com/image-2.jpg">
<img src="http://mydomain.com/image-3.jpg">
<img src="http://mydomain.com/image-4.jpg">
If possible, I would like to do this using a single line of PHP code thus avoiding having to use a loop statement.
Thanks in advance.
<a>tags? If it does, what's going to happen when you remove the closing tags? – Jon Jul 1 '12 at 21:32