Study Memory Work
[Go Lang] String Function 본문
package main
import (
"fmt"
s "strings"
)
var p = fmt.Println
func main() {
p("Contains: ", s.Contains("test", "es"))
p("Count: ", s.Count("test", "t"))
p("HasPrefix: ", s.HasPrefix("test", "te"))
p("HasSuffix: ", s.HasSuffix("test", "st"))
p("Index: ", s.Index("test", "e"))
p("Join: ", s.Join([]string{"a", "b"}, "-"))
p("Repeat: ", s.Repeat("a", 5))
p("Replace: ", s.Replace("foo", "o", "0", -1))
p("Replace: ", s.Replace("foo", "o", "0", 1))
p("Split: ", s.Split("a-b-c-d-e", "-"))
p("ToLower: ", s.ToLower("TEST"))
p("ToUpper: ", s.ToUpper("test"))
}
-- 실행
더보기
Contains: true
Count: 2
HasPrefix: true
HasSuffix: true
Index: 1
Join: a-b
Repeat: aaaaa
Replace: f00
Replace: f0o
Split: [a b c d e]
ToLower: test
ToUpper: TEST
'Programing > Go' 카테고리의 다른 글
[Go Lang] File IO : 파일 쓰기 (0) | 2023.02.27 |
---|---|
[Go Lang] 에러처리 (0) | 2023.02.27 |
[Go Land] Time (0) | 2023.02.23 |
[Go Lang] String Formatting (0) | 2023.02.23 |
[Go Lang] Go by Example (0) | 2023.02.22 |