Ja.Code 猿修地,时光机
致力于成为一位活用前端技术的嵌入式全栈工程师

js字符串处理函数

2018-01-05
Jacob Pan
js

替换

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 )


上一篇 awk基本

下一篇 css笔记

Comments

Content