You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Sometimes characters like a new line or carriage return need to be inserted in a STRING
The 61131-3 Standard supports such characters using the Dollar $ sign
Table 7 of the Standard describes the possible characters
Symbol
Description
$$
Dollar Sign
$'
Single Quote (Only in STRING)
$"
Double Quote (Only in WSTRING)
$L
Line Feed
$N
New Line
$P
Form feed
$R
Carriage Return
$T
Tab
Describe the solution you'd like
We should support these characters.
In LLVM, we could pass \HEX_CODE (e.g. \0A for new line) to pass an ascii value
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Sometimes characters like a new line or carriage return need to be inserted in a STRING
The 61131-3 Standard supports such characters using the Dollar
$
signTable 7 of the Standard describes the possible characters
Describe the solution you'd like
We should support these characters.
In LLVM, we could pass
\HEX_CODE
(e.g.\0A
for new line) to pass an ascii valueThe text was updated successfully, but these errors were encountered: