Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用劳特巴赫的 cmm 脚本自动生成文件。这是我想在文件中显示的内容: { "source": "XYZ" } // 包括引号
但是我无法让 cmm 脚本接受引号。使用“\”也不起作用。有没有办法在 CMM 脚本中处理这个问题?
在 PRACTICE(CMM 脚本)中,双引号用双引号转义。
所以这应该工作:
OPEN #1 "myfile.log" /Create WRITE #1 "{ ""source"": ""XYZ"" }" CLOSE #1