Jump to content

String append: Difference between revisions

jq
(Add Go example)
(jq)
Line 198:
"Goodbye, World!"
</pre>
 
jq's <code>+</code> operator can be used to append two strings, and under certain circumstances the <code>+=</code> operator can be used as an abbreviation for appending a string to an existing string. For example, all three of the following produce the same output:<lang jq>"Hello" | . += ", world!"
 
["Hello"] | .[0] += ", world!" | .[0]
 
{ "greeting": "Hello"} | .greeting += ", world!" | .greeting</lang>
However the <code>+=</code> operator cannot be used with jq variables in the conventional manner. One could however use the technique illustrated by the following:<lang jq>"Hello" as $a | $a | . += ", world!" as $a | $a</lang>
 
=={{header|Julia}}==
2,507

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.