Skip to content

Instantly share code, notes, and snippets.

@ranadiprony
Created August 18, 2017 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ranadiprony/2d18b6b77ae784e8a86f171d13fb18e8 to your computer and use it in GitHub Desktop.
Save ranadiprony/2d18b6b77ae784e8a86f171d13fb18e8 to your computer and use it in GitHub Desktop.
Un-Escape special Characters once converted to JSON object
$jsondata | ConvertTo-Json | % { [System.Text.RegularExpressions.Regex]::Unescape($_) } | Out-File "File.json" -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment