Notice
Recent Posts
Recent Comments
Link
투케이2K
55. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Split 사용해 특정 문자 기준으로 문자열 분리 수행 실시 본문
Go Lang (Go 언어)
55. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Split 사용해 특정 문자 기준으로 문자열 분리 수행 실시
투케이2K 2024. 2. 22. 15:56[개발 환경 설정]
개발 언어 : Go
[소스 코드]
package main
import (
"fmt"
"strings"
)
func main() {
// ---------------------------------------------------
// [기본 설명]
// ---------------------------------------------------
// "strings" 패키지는 문자열 조작 및 변경 시 사용됩니다
// ---------------------------------------------------
// Split : 특정 문자를 기준으로 문자열을 분리합니다
// ---------------------------------------------------
// [초기 변수 선언]
str := "Hello,Twok,Nice"
// [Split 사용해 특정 문자 기준으로 문자열 분리]
result := strings.Split(str, ",")
// [로그 출력]
fmt.Println("")
fmt.Println("----------------------------------------------")
fmt.Println("[로그 출력 수행]")
fmt.Println("----------------------------------------------")
fmt.Println("result : ", result)
fmt.Println("----------------------------------------------")
fmt.Println("")
}
[결과 출력]
반응형
'Go Lang (Go 언어)' 카테고리의 다른 글
Comments