I'm working on creating a bulletin board converter. I need PHP to replace/restructure the following from:
[img alt="" src="IMAGE LINK, NOT ENDING IN AN IMAGE FORMAT EXTENSION" style="max-width:100%;"]
To:
[img]IMAGE LINK[/img]
Where everything else such as the alt tags can be deleted.
At the moment I have PHP use preg_replace (in an array) and I am using regex to try and obtain the link. However I'm struggling on finding a way to convert it over, as I've not used regex before.
Apologies for the hassle, and thank you very much! :)
NOT ENDING IN AN IMAGE FORMAT EXTENSION? Couldd you give some examples and expected result for all of them?