GO语言"regexp"包中"Regexp.ReplaceAllStringFunc"类型的用法及代码示例。
用法:
func(re *Regexp) ReplaceAllStringFunc(src string, repl func(string) string) string
ReplaceAllStringFunc 返回 src 的副本,其中 Regexp 的所有匹配项都已替换为应用于匹配子字符串的函数 repl 的返回值。 repl 返回的替换被直接替换,不使用 Expand。
例子:
package main
import (
"fmt"
"regexp"
"strings"
)
func main() {
re := regexp.MustCompile(`[^aeiou]`)
fmt.Println(re.ReplaceAllStringFunc("seafood fool", strings.ToUpper))
}
输出:
SeaFooD FooL
相关用法
- GO Regexp.ReplaceAllString用法及代码示例
- GO Regexp.ReplaceAllLiteralString用法及代码示例
- GO Regexp.ReplaceAll用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
- GO Regexp.FindStringSubmatch用法及代码示例
- GO Regexp.FindAllString用法及代码示例
- GO Regexp.ExpandString用法及代码示例
- GO Regexp.FindAllStringSubmatch用法及代码示例
- GO Regexp.SubexpIndex用法及代码示例
- GO Regexp.Match用法及代码示例
- GO Regexp.Longest用法及代码示例
- GO Regexp.FindStringIndex用法及代码示例
- GO Regexp.Expand用法及代码示例
- GO Regexp.Find用法及代码示例
- GO Regexp.SubexpNames用法及代码示例
- GO Regexp.FindAllSubmatchIndex用法及代码示例
- GO Regexp.FindSubmatchIndex用法及代码示例
- GO Regexp.FindAllStringSubmatchIndex用法及代码示例
- GO Regexp.MatchString用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Regexp.ReplaceAllStringFunc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。