字符串需要双引号 VBA 现在很困惑哪些引号是什么
我需要将一个字符串附加到整个文件中带有双引号的文本文件中。我该怎么做,因为 VBA 目前非常困惑
字符串应该说什么/将文本文件附加到(加载“c:\test.lsp”)?
I need to append a string to a text file which has double quotation marks throughout it. How do I do that cause VBA is very confused at the moment
What the string should say/append the text file to (load "c:\test.lsp")?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在字符串内双引号:
或使用
Chr(34)
:You can double the quotation marks inside the string:
Or use
Chr(34)
: