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