Notice
Recent Posts
Recent Comments
Link
투케이2K
70. (Go Lang) [Mac Os] Go 문법 : String 문자열 - HasSuffix 사용해 특정 문자열로 종료하는지 확인 수행 - endWith 본문
Go Lang (Go 언어)
70. (Go Lang) [Mac Os] Go 문법 : String 문자열 - HasSuffix 사용해 특정 문자열로 종료하는지 확인 수행 - endWith
투케이2K 2024. 2. 23. 21:42[개발 환경 설정]
개발 언어 : Go
[소스 코드]
package main
import (
"fmt"
"strings"
)
func main() {
// ---------------------------------------------------
// [기본 설명]
// ---------------------------------------------------
// "strings" 패키지를 사용해 문자열 조작 및 변경, 특정 조건문을 확인할 수 있습니다
// ---------------------------------------------------
// HasSuffix : 특정 문자열로 종료하는지 확인 할 수 있습니다 - true, false
// ---------------------------------------------------
// [변수 선언]
str := "hello Twok"
// [HasSuffix 사용해 특정 문자열 종료 확인 - endWith]
result_1 := strings.HasSuffix(str, "Twok")
result_2 := strings.HasSuffix(str, "2K")
// [로그 출력]
fmt.Println("")
fmt.Println("----------------------------------------------")
fmt.Println("[로그 출력 수행]")
fmt.Println("----------------------------------------------")
fmt.Println("result_1 : ", result_1)
fmt.Println("----------------------------------------------")
fmt.Println("result_2 : ", result_2)
fmt.Println("----------------------------------------------")
fmt.Println("")
}
[결과 출력]
반응형
'Go Lang (Go 언어)' 카테고리의 다른 글
Comments