📜  字符串文字中的 xl vba 双引号 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.412000             🧑  作者: Mango

代码示例1
'The double quotation mark (") is ASCII character 34, so the 
'following Excel formula works:

=CHAR(34) & "Excel rocks." & CHAR(34)
'This formula will display:  "Excel rocks."

'Using triple double quotes has the same result:
="""Excel rocks."""