美文网首页
string反序

string反序

作者: 夜空一起砍猩猩 | 来源:发表于2018-10-30 14:37 被阅读0次

    var t string = "123456你好"

    tmp := []rune(t)

    for from, to := 0, len(tmp)-1; from < to; from, to = from + 1, to - 1{

        fmt.Println(from, to)

        //x := tmp[from]

        //tmp[from] = tmp[to]

        //tmp[to] = x

        tmp[from], tmp[to] = tmp[to],tmp[from]

    }

    fmt.Println(string(tmp))

    相关文章

      网友评论

          本文标题:string反序

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