strings.Split package main import ( "fmt" "strings" ) func main() { str := "赵,钱,孙,李,赵" //字符串分割, 使用字符分割str1 := strings.Split(str, ",") fmt.
確定! 回上一頁