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

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:strings:concatenating_strings [2021/01/11 11:55] 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 15: Line 17:
 </WRAP> </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.1610366122.txt.gz · Last modified: 2021/01/11 11:55 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki