strings.Map() Golang中的函数用于返回给定字符串的字符串副本,该字符串的所有字符均根据映射函数进行了修改。如果映射返回负值,则将字符从字符串中删除,并且不进行替换。
因此,无论何时用户想要更改某个字符串,他都可以使用字符串。Map()函数。它用user-desired字符替换字符串的字符。如果需要屏蔽某些字符,包括数字和空格,则可以使用此函数。
用法:
func Map(mapping func(rune) rune, s string) string
映射func(rune)符文参数定义需要替换原始字符的字符,而s参数则定义用户输入的原始字符串。
范例1:
// Golang program to illustrate
// the strings.Map() Function
package main
import (
"fmt";
"strings"
)
func main() {
modified:= func(r rune) rune {
if r == 'e' {
return '@'
}
return r
}
input:= "Hello, Welcome to GeeksforGeeks"
fmt.Println(input)
// using the function
result:= strings.Map(modified, input)
fmt.Println(result)
}
输出:
Hello, Welcome to GeeksforGeeks H@llo, W@lcom@ to G@@ksforG@@ks
说明:在上面的示例中,我们使用strings.Map()函数来修改字符串。我们定义了一个名为“modified”的变量,该变量将字符串中的字符‘e’替换为符号“ @”。另一个名为“input”的变量采用需要转换的输入字符串。
范例2:strings.Map()函数还可用于删除字符串中的单词之间的空格。
// Golang program to illustrate
// the strings.Map() Function
package main
import (
"fmt";
"strings"
)
func main() {
transformed:= func(r rune) rune {
if r == ' ' {
return 0
}
return r
}
input:= "GeeksforGeeks is a computer science portal."
fmt.Println(input)
// using the function
output:= strings.Map(transformed, input)
fmt.Println(output)
}
输出:
GeeksforGeeks is a computer science portal. GeeksforGeeksisacomputerscienceportal.
说明:在上面的示例中,我们使用strings.Map()函数删除字符串之间的空格。我们定义了一个名为“transformed”的变量,该变量消除了字符串中的空格“”。这是通过在空格处返回0来完成的。另一个名为“input”的变量采用一个输入字符串,该字符串的in-between空间需要删除。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自preetikagupta8171大神的英文原创作品 strings.Map() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。