fmtの内部に% %を使います.goにおけるprintf ( '% s 'の代わり)
1964 ワード
囲碁で文字列を印刷するとき、動詞を使うことができます
例えば、
%q
のフォーマットパラメータfmt
機能を使用すると、安全に文字列をエスケープし、それに引用符を追加します.例えば、
import "fmt"
func main() {
fmt.Printf("%s\n", "hello") // prints hello
fmt.Printf("%q\n", "hello") // prints "hello"
fmt.Printf("%s\n", "hello\n;") // prints hello
//; \n is not escaped
fmt.Printf("%q\n", "hello\n;") // prints "hello\n;" \n is escaped here
}
より詳細な概要の頭にfmt
パッケージreference .Reference
この問題について(fmtの内部に% %を使います.goにおけるprintf ( '% s 'の代わり)), 我々は、より多くの情報をここで見つけました https://dev.to/mcaci/using-q-inside-fmt-printf-in-go-2i23テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol