Notice
Recent Posts
Recent Comments
Link
투케이2K
53. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Trim 사용해 문자열 양쪽 끝 불필요한 문자 제거 실시 본문
Go Lang (Go 언어)
53. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Trim 사용해 문자열 양쪽 끝 불필요한 문자 제거 실시
투케이2K 2024. 2. 22. 13:35[개발 환경 설정]
개발 언어 : Go
[소스 코드]
package main
import (
"fmt"
"strings"
)
func main() {
// ---------------------------------------------------
// [기본 설명]
// ---------------------------------------------------
// "strings" 패키지는 문자열 조작 및 변경 시 사용됩니다
// ---------------------------------------------------
// Trim : 문자열 양쪽 끝에서 필요 없는 문자를 지정해 제거할 수 있습니다
// ---------------------------------------------------
// [초기 문자열 선언]
one_str := " hello "
two_str := "!!!hello!!!"
// [Trim 사용해 문자열 양쪽 끝 필요 없는 문자 제거]
one_trim := strings.Trim(one_str, " ") // 공백 제거
two_trim := strings.Trim(two_str, "!") // 문자 제거
// [로그 출력]
fmt.Println("")
fmt.Println("----------------------------------------------")
fmt.Println("[로그 출력 수행]")
fmt.Println("----------------------------------------------")
fmt.Println("one_trim : ", one_trim)
fmt.Println("----------------------------------------------")
fmt.Println("two_trim : ", two_trim)
fmt.Println("----------------------------------------------")
fmt.Println("")
}
[결과 출력]
반응형
'Go Lang (Go 언어)' 카테고리의 다른 글
Comments