/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
string.replace(/<.*?>/g, "") // Instead of "string" have to be your variable: // var s:String = "<p>Html paragraph</p>" // trace( s.replace(/<.*?>/g, "") )