Adding New Lines to Strings
PowerTip of the Day, from PowerShell.com: In a previous tip you learned that text arrays can easily be multiplied. The same is true for assignment operators such as +=. When you apply this operator to a string, it appends a text: PS> $text = “Hello” PS> $text += “World” PS> $text HelloWorld When… Continue reading Adding New Lines to Strings