Skip to content

Instantly share code, notes, and snippets.

@tnt
Created September 19, 2019 15:38
Show Gist options
  • Save tnt/90e228f0c41c915e6bea4781b4462989 to your computer and use it in GitHub Desktop.
Save tnt/90e228f0c41c915e6bea4781b4462989 to your computer and use it in GitHub Desktop.
function ConvertFrom-HereString {
param (
[string]$String=''
)
$CleanString = if ($PSVersionTable.PSEdition -eq 'Core'){
$String
} else {
$String -replace "`r"
}
$CleanString.split("`n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment