for my website, I want a simple BB code system. Nothing special–just hyperlinks and images will be fine for now.
I’m not good with RegExp. Period. But if someone could show me an example, I may be able to grasp it to clone it into different tags.
Your help is very appreciated!
The user asked for something simple, so I gave him something simple.
Where
/\[link=(.*?)\](.*?)\[\/link\]/is the regex,<a href="$1">$2</a>is the format,$inputis the input/data, and$replacementis the return.