Archive for December 2008
String Replace All in AS3
var str:String = “www abcd www xyz <www> opqr,www!”;
str = str.replace(/www/g,’done’);
trace(str) //done abcd done xyz <done> opqr,done!
var str:String = “www abcd www xyz <www> opqr,www!”;
str = str.replace(/www/g,’done’);
trace(str) //done abcd done xyz <done> opqr,done!