Skip to content

Instantly share code, notes, and snippets.

@Pome-ro
Created March 10, 2022 20:29
Show Gist options
  • Save Pome-ro/f9426eab068994ef77f7efb8b1484838 to your computer and use it in GitHub Desktop.
Save Pome-ro/f9426eab068994ef77f7efb8b1484838 to your computer and use it in GitHub Desktop.
Function Remove-Symbols {
param(
[string]
$string
)
[regex]$reg = "[^\p{L}\p{Nd}]"
return $string -replace $reg
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment