1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-06 21:52:28 +08:00

feat: add ReplaceWithMap

This commit is contained in:
dudaodong
2023-05-10 10:29:26 +08:00
parent f5784b0f46
commit c3f1bc39d7
3 changed files with 7 additions and 7 deletions

View File

@@ -526,14 +526,14 @@ func ExampleIndexOffset() {
// -1
}
func ExampleReplaceByMap() {
func ExampleReplaceWithMap() {
str := "ac ab ab ac"
replaces := map[string]string{
"a": "1",
"b": "2",
}
result := ReplaceByMap(str, replaces)
result := ReplaceWithMap(str, replaces)
fmt.Println(result)
// Output: