码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript取出字符串中括号里的内容

时间:2018-11-03 01:58:59      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:ack   UNC   reg   字符   function   tst   asc   The   sub   


/**
 * 取出中括号内的内容
 * @param text
 * @returns {string}
 */
export function getBracketStr(text) {
    let result = ''
    if (isObjEmpty(text))
        return result
    let regex = /\[(.+?)\]/g;
    let options = text.match(regex)
    if (!isObjEmpty(options)) {
        let option = options[0]
        if (!isObjEmpty(option)) {
            result = option.substring(1, option.length - 1)
        }
    }
    return result
}

/**
 * 取出小括号内的内容
 * @param text
 * @returns {string}
 */
export function getParenthesesStr(text) {
    let result = ''
    if (isObjEmpty(text))
        return result
    let regex = /\((.+?)\)/g;
    let options = text.match(regex)
    if (!isObjEmpty(options)) {
        let option = options[0]
        if (!isObjEmpty(option)) {
            result = option.substring(1, option.length - 1)
        }
    }
    return result
}

JavaScript取出字符串中括号里的内容

标签:ack   UNC   reg   字符   function   tst   asc   The   sub   

原文地址:https://www.cnblogs.com/lalalagq/p/9898757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!