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

Go 实现Python中的语法

时间:2020-04-29 01:09:20      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:pen   spl   sed   字符串   rip   str   div   cli   字符   

字符串相关:

go实现python字符串的 .strip() 简单实现:

技术图片
package main

import "fmt"

func main() {
    s1 := "   hello world 你好 世界 "
    for  {
        if s1[0] != 32 && s1[len(s1)-1] !=32{
            break
        }
        if s1[0] == 32{
            s1 = s1[1:]
        }
        if s1[len(s1)-1] ==32{
            s1 = s1[:len(s1) -1]
        }
    }
    fmt.Println(s1)
}
View Code

 

Go 实现Python中的语法

标签:pen   spl   sed   字符串   rip   str   div   cli   字符   

原文地址:https://www.cnblogs.com/zach0812/p/12799308.html

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