js去空 去除空格

/**
 * 去除左侧空格
 */
function lTrim(str) {
    if (str) {
        return str.replace(/(^\s*)/g,"");
    }
    return null
}

/**
 * 去除右侧空格
 */
function rTrim(str) {
    if (str) {
        return str.replace(/(\s*$)/g,"");
    }
    return null
}

/**
 * 去除两侧空格
 */
function trim(str) {
    if (str) {
        return str.replace(/(^\s*)|(\s*$)/g, "");
    }
    return null
}

 

posted @ 2021-06-23 11:26  金刀3691  阅读(78)  评论(0编辑  收藏  举报