투케이2K

59. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Replace 사용해 특정 문자열 모두 변경 수행 - ReplaceAll 본문

Go Lang (Go 언어)

59. (Go Lang) [Mac Os] Go 문법 : String 문자열 - Replace 사용해 특정 문자열 모두 변경 수행 - ReplaceAll

투케이2K 2024. 2. 22. 19:20

[개발 환경 설정]

개발 언어 : Go

 

[소스 코드]

 

package main

import (
	"fmt"
	"strings"
)

func main() {

	// ---------------------------------------------------
	// [기본 설명]
	// ---------------------------------------------------
	// "strings" 패키지는 문자열 조작 및 변경 시 사용됩니다
	// ---------------------------------------------------
	// 문법 : strings.Replace(문자열,원래문자,변환문자,반복횟수)
	// ---------------------------------------------------
	// 반복 횟수를 -1 로 설정 시 모든 변환 문자를 변경 합니다
	// ---------------------------------------------------

	// [초기 변수 선언]
	str := "Twok Hello Twok Twok"

	// [Replace 사용해 특정 문자열 변경 수행]
	result := strings.Replace(str, "Twok", "-", -1)

	// [로그 출력]
	fmt.Println("")
	fmt.Println("----------------------------------------------")
	fmt.Println("[로그 출력 수행]")
	fmt.Println("----------------------------------------------")
	fmt.Println("result : ", result)
	fmt.Println("----------------------------------------------")
	fmt.Println("")
}
 

[결과 출력]


 

반응형
Comments