/ Published in: ActionScript 3
removes all font tags from a string
Expand |
Embed | Plain Text
//strip Font Tags function stripFont(string:String):String { var s:String = string; var regexp:RegExp = /<\/?font[^>]*>/gi; return s.replace(regexp,""); }
You need to login to post a comment.
