如何打印一個雙引號符號(「)打印雙引號符號我嘗試了http://r.789695.n4.nabble.com/How-to-print-a-variable-with-in-double-quotes-td905186.html提到的不同方法,但他們不工作:如何在紅語言
print "\""
print as.character(x) ; x should come in quotes
print dQuote(x)
如何才能做到這一點?
如何打印一個雙引號符號(「)打印雙引號符號我嘗試了http://r.789695.n4.nabble.com/How-to-print-a-variable-with-in-double-quotes-td905186.html提到的不同方法,但他們不工作:如何在紅語言
print "\""
print as.character(x) ; x should come in quotes
print dQuote(x)
如何才能做到這一點?
有兩個字符串格式... {This is a string}
和"This is too"
。轉義與插入符號完成,^
。
如果你使用你少擔心逃避括號。您可以使用單引號,雙引號,如果它們自然匹配,甚至包括大括號。 {This is {a valid} string}
。
所以你可以說print {"}
或如果你堅持print "^""
。前者通常是可取的。
{string}確實很方便。 – rnso
尖括號也是字符串分隔符。 –
請參閱[2.11.2字符串格式](http://www.rebol.com/docs/core23/rebolcore-16.html#section-2.11.2) – rgchris