golang strings.스플릿 함수
8557 단어 golang
email := "[email protected]"
emailS := strings.Split(email, "@")
fmt.Println(emailS) //[abc a.com]
s := strings.Split("abc,abc", "")
fmt.Println("empty seperator ", s, len(s)) // [a b c , a b c] 7
s = strings.Split("", "")
fmt.Println("empty && empty ", s, len(s)) // [] 0
s = strings.Split("", ",")
fmt.Println("empty && not empty seperator ", s, len(s)) // [] 1 len 1, 0
s = strings.Split("abc,abc", ",") // [abc abc] 2
fmt.Println(s, len(s))
s = strings.Split("abc,abc", "|") // [abc,abc] 1
fmt.Println("not contain seperator ", s, len(s))
fmt.Println(len(""), len([]string{""})) //0 1
//str := ""
//fmt.Println(str[0]) //panic: runtime error: index out of range [0] with length 0
//
str := "abc"
fmt.Println(str[0])
str2 := "abc "
fmt.Printf("%v,%v,%v,%c", str2[0], str2[3], []byte(str2), []rune(str2)[3])
php에서 explode 대공 문자열의 분할은 go와 일치하며 빈 구분자는 지원되지 않습니다
//explode ($delimiter, $string, $limit = null)
var_dump(explode('','abc'));// , Warning + bool false
var_dump(explode(',',''));// , array(0=>"")
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
set containerThere is no built-in set container in Go How to implement Set struct{} => type struct{}{} => 0bytes How to create set :=...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.