我在go text/template
套件中沒有看到任何類型的startswith
函數。這是最好的實現嗎?
{{if eq (slice $c 0 5) "begin"}}
沒有內建的startswith
模板函數。
最乾淨的是,如果您註冊具有該功能的自訂函數:
func main() { t := template.must(template.new("").funcs(template.funcmap{ "hasprefix": strings.hasprefix, }).parse(src)) for _, s := range []string{"foo", "begining"} { if err := t.execute(os.stdout, s); err != nil { panic(err) } } } const src = `{{.}}: {{if hasprefix . "begin"}}yes{{else}}no{{end}} `
這將輸出(在 go playground 上嘗試):
foo: no begining: yes
如果您不能或不想註冊自訂函數,slice
適用於字串,但您必須小心使用它:如果輸入字串短於5 個位元組,您將收到模板執行錯誤!
相反(如果您不想註冊自訂函數),我建議使用內建 printf
函數,精度是要比較的字串的長度。如果輸入字串較短,printf
不會出現恐慌:
{{if eq (printf "%.5s" .) "begin"}}yes{{else}}no{{end}}
這輸出相同。在 go playground 上嘗試這個。
請注意,使用 hasprefix
更安全、更乾淨、更簡單,因為我們不必硬編碼前綴的長度 (5
)。
請注意,使用顯式參數索引我們也可以讓這部分動態化:
{{$prefix := "begin"}}{{if eq (printf "%.[1]*s" (len $prefix) .) $prefix}}yes{{else}}no{{end}}
如您所見,我們可以去掉前綴 5
的硬編碼長度。這再次輸出相同的內容,請在 go playground 上嘗試。
最後一件事要注意:切片字串將索引解釋為位元組索引,而格式字串中使用的精確度則解釋為符文計數!
以上是golang 文字/範本以函數開頭的詳細內容。更多資訊請關注PHP中文網其他相關文章!