bash:strings:concatenating_strings
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:strings:concatenating_strings [2021/01/11 11:55] – created peter | bash:strings:concatenating_strings [2021/01/13 22:55] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Strings - Concatenating Strings ====== | ====== BASH - Strings - Concatenating Strings ====== | ||
+ | |||
+ | To concatenate two variables you can just write them one after another: | ||
<code bash> | <code bash> | ||
Line 11: | Line 13: | ||
</ | </ | ||
- | The following program outputs the string “HelloWorld is the concatenation of Hello and World.”. | + | <WRAP info> |
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | a=' | ||
+ | b=' | ||
+ | c=" | ||
+ | echo " | ||
+ | > Hello World | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | foo=" | ||
+ | foo=" | ||
+ | echo " | ||
+ | > Hello World | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | echo ${var:0:(-1 -4)}XYZ | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | abcXYZ | ||
+ | </ | ||
bash/strings/concatenating_strings.1610366101.txt.gz · Last modified: 2021/01/11 11:55 by peter