golang去掉字符串中多余空格

作者: 不屈真实 | 来源:发表于2018-11-19 23:23 被阅读0次

    目的:删除字符串中多余的空格(含tab),有多个空格时,仅保留一个空格,同时将字符串中的tab换为空格
    方法

    func DeleteExtraSpace(s string) string {
        //删除字符串中的多余空格,有多个空格时,仅保留一个空格
        s1 := strings.Replace(s, "  ", " ", -1)      //替换tab为空格
        regstr := "\\s{2,}"                          //两个及两个以上空格的正则表达式
        reg, _ := regexp.Compile(regstr)             //编译正则表达式
        s2 := make([]byte, len(s1))                  //定义字符数组切片
        copy(s2, s1)                                 //将字符串复制到切片
        spc_index := reg.FindStringIndex(string(s2)) //在字符串中搜索
        for len(spc_index) > 0 {                     //找到适配项
            s2 = append(s2[:spc_index[0]+1], s2[spc_index[1]:]...) //删除多余空格
            spc_index = reg.FindStringIndex(string(s2))            //继续在字符串中搜索
        }
        return string(s2)
    }
    

    相关文章

      网友评论

        本文标题:golang去掉字符串中多余空格

        本文链接:https://www.haomeiwen.com/subject/somzfqtx.html