字符串需要双引号 VBA 现在很困惑哪些引号是什么

发布于 2024-09-30 06:50:34 字数 99 浏览 3 评论 0原文

我需要将一个字符串附加到整个文件中带有双引号的文本文件中。我该怎么做,因为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很坚强 2024-10-07 06:50:34

您可以在字符串内双引号:

"""The Professional"" is a killer movie."

或使用 Chr(34)

Chr(34) & "The Professional" & Chr(34) & " is a killer movie."

You can double the quotation marks inside the string:

"""The Professional"" is a killer movie."

Or use Chr(34):

Chr(34) & "The Professional" & Chr(34) & " is a killer movie."
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文