1. 程式人生 > >js 擴展實例

js 擴展實例

case rep cti span str bbb word lac toupper

//擴展實例1 字符串中首字符轉大寫
var test=‘  this is  ‘;
String.prototype.mytrim=function(){
    var re=/^\s+(.*?)\s+$/;
    return this.replace(re,‘$1‘);
};
console.log(‘[‘+test+‘]‘);
console.log(‘[‘+test.trim()+‘]‘);

//test.mytrim() 等價於:test.replace(re,‘$1‘);
console.log(‘[‘+test.mytrim()+‘]‘);

name = ‘aaa bbb ccc‘;
uw
=name.replace(/\b\w+\b/g, function(word){ console.log(word); return word.substring(0,1).toUpperCase()+word.substring(1);} );

js 擴展實例