fmt.Sprintf("a:%s, b:%s ...... this goes really long")
慕村225694
浏览 422回答 3
3回答
沧海一幻觉
使用字符串连接在多行上构造单个字符串值: fmt.Sprintf("a:%s, b:%s " + " ...... this goes really long", s1, s2)本示例中的长字符串是在编译时构建的,因为字符串连接是一个常量表达式。您可以使用原始字符串文字在包含的换行符处拆分字符串: fmt.Sprintf(`this text is on the first lineand this text is on the second line,and third`)