7.3 提取字符串

  • 分割字符串;
var text = "aaa bbb ccc";
var filter = " ";
var arr = text.split(filter);
alert(arr);