Skip to content

Instantly share code, notes, and snippets.

@pfmoore
Created October 26, 2020 09:47
Show Gist options
  • Save pfmoore/01ee1578c2f7f03ab0ed8f01af346799 to your computer and use it in GitHub Desktop.
Save pfmoore/01ee1578c2f7f03ab0ed8f01af346799 to your computer and use it in GitHub Desktop.
Strip ANSI escape characters from a string
param ([String]$s)
$s -replace '\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])',''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment