登录
首页 >  Golang >  Go问答

相当于Go中的Python string.format?

来源:Golang技术栈

时间:2023-03-08 13:43:48 414浏览 收藏

对于一个Golang开发者来说,牢固扎实的基础是十分重要的,golang学习网就来带大家一点点的掌握基础知识点。今天本篇文章带大家了解《相当于Go中的Python string.format?》,主要介绍了golang,希望对大家的知识积累有所帮助,快点收藏起来吧,否则需要时就找不到了!

问题内容

在 Python 中,您可以这样做:

"File {file} had error {error}".format(file=myfile, error=err)

或这个:

"File %(file)s had error %(error)s" % {"file": myfile, "error": err}

在 Go 中,最简单的选择是:

fmt.Sprintf("File %s had error %s", myfile, err)

这不允许您交换格式字符串中参数的顺序,您需要为I18N执行此操作。Go 确实 有这个template包,这需要类似的东西:

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,实现您想要的格式化程序非常简单且紧凑。

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))
}

输出(在Go Playground上试试):

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

我们可以通过在函数中自动将括号添加到参数名称来使其使用起来更愉快log()

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

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

func log2(format string, args ...string) {
    for i, v := range args {
        if i%2 == 0 {
            args[i] = "{" + v + "}"
        }
    }
    r := strings.NewReplacer(args...)
    fmt.Println(r.Replace(format))
}

输出(在Go Playground上试试):

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

是的,您可以说这只接受string参数值。这是真实的。再多一点改进,这将不是真的:

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

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

func log3(format string, args ...interface{}) {
    args2 := make([]string, len(args))
    for i, v := range args {
        if i%2 == 0 {
            args2[i] = fmt.Sprintf("{%v}", v)
        } else {
            args2[i] = fmt.Sprint(v)
        }
    }
    r := strings.NewReplacer(args2...)
    fmt.Println(r.Replace(format))
}

输出(在Go Playground上试试):

File /data/test.txt had error 666

这是一个变体,接受参数作为 amap[string]interface{}并将结果作为 a 返回string

type P map[string]interface{}

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

    s := log33("File {file} had error {error}", P{"file": file, "error": err})
    fmt.Println(s)
}

func log33(format string, p P) string {
    args, i := make([]string, len(p)*2), 0
    for k, v := range p {
        args[i] = "{" + k + "}"
        args[i+1] = fmt.Sprint(v)
        i += 2
    }
    return strings.NewReplacer(args...).Replace(format)
}

在Go Playground上尝试一下。

text/template

您的模板解决方案或提案也过于冗长。它可以写成这样紧凑(省略错误检查):

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)
}

输出(在Go Playground上试试):

File /data/test.txt has error 666

如果您想返回string(而不是将其打印到标准输出),您可以这样做(在Go Playground上尝试):

func log5(format string, p P) string {
    b := &bytes.Buffer{}
    template.Must(template.New("").Parse(format)).Execute(b, p)
    return b.String()
}

使用显式参数索引

这已经在另一个答案中提到过,但要完成它,要知道相同的显式参数索引可以使用任意次数,从而导致多次替换相同的参数。在此问题中阅读有关此内容的更多信息:[Replace all variables in Sprintf with same variable](https://stackoverflow.com/questions/37001449/replace-all-variables- in-sprintf-with-same-variable)

今天关于《相当于Go中的Python string.format?》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于golang的内容请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表