Powershell - Strip spaces using regular expressions
You can either match or replace string using inline regular expressions. Here's how to do it in powershell:
([regex]"\W").Replace("hello worlD 123","")
helloworlD123
You can either match or replace string using inline regular expressions. Here's how to do it in powershell:
([regex]"\W").Replace("hello worlD 123","")
helloworlD123