首页 > 后端开发 > Golang > Go 中 Python 的'string.format”等价物是什么?它们在灵活性和功能方面有何比较?

Go 中 Python 的'string.format”等价物是什么?它们在灵活性和功能方面有何比较?

Susan Sarandon
发布: 2024-12-29 17:56:20
原创
871 人浏览过

What are the Go equivalents to Python's `string.format` and how do they compare in flexibility and functionality?

相当于 Go 中的 Python string.format?

在 Python 中,可以使用 string.format 将值插入字符串带有这样的占位符:

"File {file} had error {error}".format(file=myfile, error=err)
登录后复制

Go 有一个等效的函数,称为 Sprintf,其工作原理与way:

fmt.Sprintf("File %s had error %s", myfile, err)
登录后复制

但是,Sprintf 有一个限制:它要求格式字符串中参数的顺序与参数的顺序匹配。这可能是国际化 (I18N) 的问题,其中占位符的顺序可能会因语言而异。

使用文本/模板

Go 提供Sprintf 的更灵活替代方案称为文本/模板。它允许对格式进行更多控制,包括指定占位符顺序的能力:

package main

import (
    "bytes"
    "text/template"
    "os"
)

func main() {
    type Params struct {
        File string
        Error string
    }

    var msg bytes.Buffer

    params := &Params{
        File: "abc",
        Error: "def",
    }

    tmpl, _ := template.New("errmsg").Parse("File {{.File}} has error {{.Error}}")
    tmpl.Execute(&msg, params)
    msg.WriteTo(os.Stdout)
}
登录后复制

这种基于模板的方法可以提供更大的灵活性和对字符串格式的控制。

与 strings.Replacer

可以使用 strings.Replacer 类型来实现允许使用自定义名称的占位符的格式化程序:

package main

import (
    "fmt"
    "strings"
)

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))
}
登录后复制

这种方法简单易用。

使用显式参数索引

另一种选择是在格式字符串中使用显式参数索引,允许占位符重复使用多个times:

fmt.Printf("File %[1]s had error %[1]s", myfile, err)
登录后复制

这种方法的通用性不如以前的方法,但对于简单的情况很有用。

以上是Go 中 Python 的'string.format”等价物是什么?它们在灵活性和功能方面有何比较?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板