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