首页 >后端开发 >Golang >Go 字符串格式:除了 `fmt.Sprintf()` - 还有哪些替代方案?

Go 字符串格式:除了 `fmt.Sprintf()` - 还有哪些替代方案?

Susan Sarandon
Susan Sarandon原创
2024-12-20 02:47:09613浏览

Go String Formatting:  Beyond `fmt.Sprintf()` – What are the Alternatives?

Go 中 Python string.format 的等价物?

在 Python 中,使用 format() 方法进行字符串插值在排序和替换参数方面提供了灵活性。然而,在 Go 中,fmt.Sprintf() 函数提供了更有限的选项,阻碍了国际化(I18N)。是否有更合适的替代方案允许独立的参数排序?

Strings.Replacer

利用 strings.Replacer 使您能够有效地创建自定义字符串格式化程序。

func main() {
    file, err := "/data/test.txt", "file not found"

    log("File {file} had error {error}", "{file}", file, "{error}", err)
}

func log(format string, args ...string) {
    r := strings.NewReplacer(args...)
    fmt.Println(r.Replace(format))
}

样品输出:

File /data/test.txt had error file not found

WiText/Template

文本/模板包提供了基于模板的解决方案,尽管它可能比 Strings.Replacer 方法更详细。

type P map[string]interface{}

func main() {
    file, err := "/data/test.txt", 666

    log4("File {{.file}} has error {{.error}}", P{"file": file, "error": err})
}

func log4(format string, p P) {
    t := template.Must(template.New("").Parse(format))
    t.Execute(os.Stdout, p)
}

示例输出:

File /data/test.txt has error 666

显式参数索引

fmt.Sprintf() 支持显式参数索引,允许您多次重复相同的索引来替换相同的参数。在相关问题“用相同的变量替换 Sprintf 中的所有变量。”中了解有关此技术的更多信息。

以上是Go 字符串格式:除了 `fmt.Sprintf()` - 还有哪些替代方案?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn