Creating Multiline Strings
PowerTip of the Day, from PowerShell.com: You probably know what this line produces: ‘Hello’ * 12 Right, you get 12 times the string you submitted. If you wanted new lines instead, a minor adjustment will do the job: ,‘Hello’ * 12 The comma puts the string into an array, and when you multiply arrays,… Continue reading Creating Multiline Strings