Posted
Filed under Action Script
String.prototype.replace = function(find, replace) {
    var temp_array = this.split(find);
     return temp_array.join(replace);   
};

action script 2.0에는 포함 되어 있지 않는 string replace....
2009/10/23 16:55 2009/10/23 16:55