Posted on 28th April 2025|127 views
How does String Concatenation happen in Powershell?
Posted on 28th April 2025| views
In Powershell, String concatenation is achieved by “+” operator.
Example:
$String1=”Viswanath”
$String2=”Hello”
Write-Host “Concatenate String”
$String1+$String2
Output
Viswanath.Hello