Quoting constructs: Difference between revisions

Content added Content deleted
Line 122: Line 122:
</lang>Long JSON strings can be broken up into smaller JSON strings and concatenated
</lang>Long JSON strings can be broken up into smaller JSON strings and concatenated
using the infix "+" operator, e.g. <lang jq>
using the infix "+" operator, e.g. <lang jq>
"This is not such "
"This is not such a"
+ "long string after all."</lang>
+ "long string after all."</lang>
"Raw data", such as character strings that are not expressed as JSON strings,
"Raw data", such as character strings that are not expressed as JSON strings,
cannot be included in jq programs textually but must be "imported" in some manner, e.g. from
cannot be included in jq programs textually but must be "imported" in some manner, e.g. from
environment variables, text files, or using command-line arguments options.
environment variables, text files, or using command-line options.


=={{header|Julia}}==
=={{header|Julia}}==