PowerShell string concatenation is performed using the concatenation operator which is +
PS> $a = '1234'
PS> $b = '5678'
PS> $c = $a + $b
PS> $c
12345678
When you concatenate 2 strings you’re creating a new string not adding extra characters… Read the full text.