PHP Regex ที่ควรเก็บไว้

remove all tag

preg_replace("/<.*?>/", "", $string);

remove tag <a>

preg_replace("/<\\/?a(\\s+.*?>|>)/", "", $string);