Go 实现Python中的语法
2021-02-03 22:16
标签:pen spl sed 字符串 rip str div cli 字符 Go 实现Python中的语法 标签:pen spl sed 字符串 rip str div cli 字符 原文地址:https://www.cnblogs.com/zach0812/p/12799308.html字符串相关:
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)
}
上一篇:(四)多线程:控制线程