2008年12月16日 星期二

分割字串(split)

string.split(分割的字串, 分割後各字串的字元數-可不寫)
var n = 'this_is_test';
var a = n.split("_");
alert(a[1]); ==>is

沒有留言: