Notice
Recent Posts
Recent Comments
Link
투케이2K
58. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Replace 사용해 특정 문자열 변환 실시 본문
Go Lang (Go 언어)
58. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Replace 사용해 특정 문자열 변환 실시
투케이2K 2024. 2. 22. 19:07[개발 환경 설정]
개발 언어 : Go
[소스 코드]
package main
import (
"fmt"
"strings"
)
func main() {
// ---------------------------------------------------
// [기본 설명]
// ---------------------------------------------------
// "strings" 패키지는 문자열 조작 및 변경 시 사용됩니다
// ---------------------------------------------------
// 문법 : strings.Replace(문자열,원래문자,변환문자,반복횟수)
// ---------------------------------------------------
// [초기 변수 선언]
str := "Hello Twok Twok"
// [Replace 사용해 특정 문자열 변경 수행]
result_1 := strings.Replace(str, "Twok", "-", 1)
result_2 := strings.Replace(str, "Twok", "-", 2)
// [로그 출력]
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