User Tools

Site Tools


bash:strings:concatenating_strings

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
bash:strings:concatenating_strings [2021/01/11 11:55] – created peterbash: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:
 </code> </code>
  
-The following program outputs the string “HelloWorld is the concatenation of Hello and World.”.+<WRAP info> 
 +**NOTE:**  The following program outputs the string “HelloWorld is the concatenation of Hello and World.”. 
 +</WRAP> 
 + 
 +---- 
 + 
 +<code bash> 
 +a='Hello' 
 +b='World' 
 +c="${a} ${b}" 
 +echo "${c}" 
 +> Hello World 
 +</code> 
 + 
 +or 
 + 
 +<code bash> 
 +foo="Hello" 
 +foo="${foo} World" 
 +echo "${foo}" 
 +> Hello World 
 +</code> 
 + 
 +---- 
 + 
 +<code bash> 
 +var="abcdefgh" 
 +echo ${var:0:(-1 -4)}XYZ 
 +</code> 
 + 
 +returns: 
 + 
 +<code bash> 
 +abcXYZ 
 +</code>
  
bash/strings/concatenating_strings.1610366101.txt.gz · Last modified: 2021/01/11 11:55 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki