-1

我在 digikeyboard.printIn 中写入 \ 符号时遇到问题,该行停止突出显示并输出错误

D:\documents\Arduino\powershell_write.ino: 在函数 'void loop()' 中:

powershell_write:67:24:错误:不完整的通用字符名称 \U

DigiKeyboard.println("$path = 'C:\Users\Public\passwords.png'");

                    ^

powershell_write:92:24:错误:不完整的通用字符名称 \U

DigiKeyboard.println("$ReportEmail.Attachments.Add('C:\Users\Public\passwords.png')");

                    ^

退出状态 1 不完整的通用字符名称 \U

提前感谢您的帮助

4

1 回答 1

0

你必须逃避\

DigiKeyboard.println("$path = 'C:\\Users\\Public\\passwords.png'");

如果允许,或者使用正斜杠:

DigiKeyboard.println("$path = 'C:/Users/Public/passwords.png'");
于 2020-03-19T11:33:54.293 回答