Multiline String Variable
| ID | 259 |
|---|---|
| Link Reference | https://blogs.technet.microsoft.com/heyscriptingguy/2015/12/31/powertip-use-here-strings-with-powershell/ |
| Link Credits | https://powershell.org/forums/topic/debugging-advanced-functions-with-multi-line-string-assignment-problems/ |
| Link Technical Documentation | Not set |
| PlCodelang | PowerShell |
| PlGroup | Strings |
| PlItemTitle | Multiline String Variable |
| Code | # In PowerShell such variables are called: Here-Strings $mySQLString = @" SELECT 1 FROM dbo.TestTable WHERE 1=1 "@ |
| Result Example |