0
我有一個算法來識別在.txt文件中使用的分隔符。我想輸出使用cat()
找到的分隔符。我使用%s
與sprintf()
無濟於事。如何使用sprintf顯示字符串「 t」?
current.sep = "\t"
cat(sprintf("Found separator : %s. \n", current.sep))
## Found separator : .
cat(sprintf("Found separator : %s. \n", "current.sep"))
## Found separator : current.sep.
## I want:
## Found separator : \t.
這...是顯示它? '##找到分隔符:.'(註釋去掉了空格,但是w/e)有一個'\ t',不是嗎? –