User Tools

Site Tools


bash:concatenating_strings

This is an old revision of the document!


BASH - Concatenating Strings

#!/bin/bash
 
string1="Hello"
string2="World"
string=$string1$string2
echo "$string is the concatenation of string1 and string2."

The following program outputs the string “HelloWorld is the concatenation of Hello and World.”.

bash/concatenating_strings.1576183796.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki