js中關於String對象的replace使用詳解

來源:互聯網
上載者:User

今天在讀Qwrap的源碼stringH時裡邊有個
複製代碼 代碼如下:
format: function(s, arg0) {
var args = arguments;
return s.replace(/\{(\d+)\}/ig, function(a, b) {
return args[(b | 0) + 1] || '';
});
}

它的使用方式是:
alert(format("{0} love {1}.",'I','You'))//I love you
format的實現方式主要是用到了String對象的replace方法:

replace:返回根據Regex進行文字替換後的字串的複製。

1.平時常用到的replace
複製代碼 代碼如下:
function ReplaceDemo(){
var r, re; // 聲明變數。
var ss = "The man hit the ball with the bat.\n";
ss += "while the fielder caught the ball with the glove.";
re = /The/g; // 建立Regex模式。
r = ss.replace(re, "A"); // 用 "A" 替換 "The"。
return(r); // 返回替換後的字串。
}
ReplaceDemo(); //A man hit the ball with the bat. while the fielder caught the ball with the glove.

2.替換模式中的子運算式
複製代碼 代碼如下:
function ReplaceDemo(){
var r, re; // 聲明變數。
var ss = "The rain in Spain falls mainly in the plain.";
re = /(\S+)(\s+)(\S+)/g; // 建立Regex模式。
r = ss.replace(re, "$3$2$1"); // 交換每一對單詞。
return(r); // 返回結果字串。
}
document.write(ReplaceDemo()); //rain The Spain in mainly falls the in plain.

匹配正則的項:The rain,in Spain,falls mainly,in the;執行ss.replace(re, "$3$2$1")操作,完成單詞位置的交換

$1匹配的是第一個(\S+)

$2匹配的是(\s+)

$3匹配的是第二個(\S+)

3.replace第二個參數是function時

複製代碼 代碼如下:
function f2c(s){
var test = /(\d+(\.\d*)?)F\b/g; // 初始化模式。
return(s.replace(test,function($0,$1,$2){return((($1-32)) + "C");}));
}
f2c("Water boils at 212F 3F .2F 2.2F .2");//Water boils at 180C -29C .-30C -29.8C .2

$0匹配 212F,3F,.2F,2.2F
$1匹配 212,3,.2,2.2
$2匹配 最後一個.2

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.