替换
var str = "/path/to/file.js";
str.replace(/file.js$/, "other.js");
// "/path/to/other.js"
提取字符串
var str = "/path/to/file.js";
var idx = str.search(/file.js$/);
str.slice(0, idx);
// "/path/to/"
trim实现
function trim(s) {
return s.replace(/(^\s*)|(\s*$)/g, "");
}
trim(" aaa ");
// "aaa"
更多请见JavaScript String 对象。
Jacob Pan ( jacobpan3g.github.io/cn )