windows:scripting:ps_new_line

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


windows:scripting:ps_new_line [2019/10/31 09:06] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== New line in PowerShell string ====== 
 +Append "`n" to the end of the string. 
 +Or use the following function 
 +<code powershell |AppendNewLine> 
 +function AppendNewLine { 
 +    $tmpData += $args[0] + $args[1] 
 +    $tmpData += "`n" 
 +    return $tmpData 
 +
 +$string += AppendNewLine "Parameter" "Value" 
 +$string += AppendNewLine "Parameter1" "Value1" 
 +</code>
  • windows/scripting/ps_new_line.txt
  • Last modified: 2019/10/31 09:06
  • by 127.0.0.1