英文:
How create string with escape character?
问题
我想创建字符串"str"
,但我想给字符串一个变量名。
例如:
x := "name"
q := fmt.Sprintf("\"%s\"", x)
我希望q的值为"\"name\""
我尝试了这个链接。
英文:
I want to create string \"str\"
but i want to give variable name to str.
For ex :
x := "name"
q := fmt.Sprintf("\"%s\"", x)
I want q = "\"name\""
I tried this
答案1
得分: 3
使用以 \
开头的转义序列来显示格式化字符串中的特殊字符字面值,例如 \\
表示 \
,\"
表示 "
。
package main
import (
"fmt"
)
func main() {
x := "hello"
q := fmt.Sprintf("\\\"%s\\\"", x)
fmt.Println(q)
}
英文:
Use escape sequences preceded by \
to show literal special characters in a formatted string \\
for \
and \"
for "
package main
import (
"fmt"
)
func main() {
x := "hello"
q := fmt.Sprintf("\\\"%s\"\\", x)
fmt.Println(q)
}
答案2
得分: 0
一个更加功能强大、灵活的解决方案,根据你的喜好:
x := "hello"
p := []byte{'"', '\\', '"', '"'}
q := append(append(p, []byte(x)...), p...)
fmt.Printf("%s", q)
https://play.golang.org/p/MHOsdefZYW
英文:
A more functional, flexible solution, depending on your taste:
x := "hello"
p := []byte{'"', '\\', '"', '"'}
q := append(append(p, []byte(x)...), p...)
fmt.Printf("%s", q)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论