/ Published in: ActionScript 3
Repalces all the sub-strings
Expand |
Embed | Plain Text
private function replace(org:String, fnd:String, rpl:String):String { return org.split(fnd).join(rpl); }
You need to login to post a comment.
