Добавялем обработку в строке \\ в сценарии

This commit is contained in:
2025-07-28 19:18:19 +03:00
parent 7be2d41547
commit 2002a6b45f

View File

@@ -744,6 +744,8 @@ int IoTScenario::gettok() {
IdentifierStr += '"'; IdentifierStr += '"';
} else if (LastChar == 'n') { } else if (LastChar == 'n') {
IdentifierStr += '\n'; IdentifierStr += '\n';
} else if (LastChar == '\\') {
IdentifierStr += '\\';
} }
} else { } else {
IdentifierStr += (char)LastChar; IdentifierStr += (char)LastChar;