/*--String--*/
String.prototype.trim = function() {
    return this.replace(/^[ ]+|[ ]+$/g, '');
}
String.prototype.replaceAll = function( _searchStr_, _replaceStr_ ) {
    _replaceAll_ary_ = this.split(_searchStr_);
    return _replaceAll_ary_.join(_replaceStr_);
}