Jump to content

regular expression html input


radox

Recommended Posts

Hello All!

 

I'm looking for a regular expression (regexp) to check for valid html input. I have a textarea where I allow the end user to input html markup. Does such an expression exist? ...or do I have to exclude all characters that I wouldn't allow (ie. semi-colon, parentheses, etc).

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/215890-regular-expression-html-input/
Share on other sites

I would highly suggest NOT using regex for this. You will be better off with something like PHP Tidy or HTMLPurifier to handle this for you. In there you can set the allowed tags etc and it will properly format your HTML and remove anything you do not necessarily want.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.