如何在反引号字符串中添加反引号?
是否可以使用反引号在 Go 中打印反引号:如下所示:
package main
import "fmt"
func main() {
fmt.Println(```) // for example I can do it with double quotes "\""
}
is it possible to print back quotes in Go using back quotes : something like this:
package main
import "fmt"
func main() {
fmt.Println(```) // for example I can do it with double quotes "\""
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用单引号:
https://golang.org/pkg/fmt#Printf
You can also do it with single quotes:
https://golang.org/pkg/fmt#Printf
TLDR
\x:十六进制 参见 fmt
6016
96<子>10
1408 匹配字符 ` 重音
TLDR
\x: Hex see fmt
6016
9610
1408 matches the character ` grave accent