# Remove unwanted characters $data = "This guy *sure* has habit of 'Highlighting' just about -everything-" $data = Remove($data,"*'-","C") MsgOk msg=$data |
# Remove all HTML tags (returning just plain text) $html = "The <b>latest</b> download of GSAK can be found at <a href='http://www.gsak.net'>gsak.net</a>" $data = Remove($html,"</?[a-z][a-z0-9]*[^<>]*>","R") MsgOk msg=$data |