/ 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.
gurpreet on 07/27/09
1 person have marked this snippet as a favorite
Repalces all the sub-strings
private function replace(org:String, fnd:String, rpl:String):String { return org.split(fnd).join(rpl); }
You need to login to post a comment.