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=>"")

좋은 웹페이지 즐겨찾기