PowerTip: Replace Non-Alphabetic Characters in String

Doctor Scripto

Summary: Use Windows PowerShell to replace non-alphabetic characters in a string.

Hey, Scripting Guy! Question How can I use Windows PowerShell to replace a string that contains non-alphabetic characters
           (such as commas and periods)?

Hey, Scripting Guy! Answer Use the –Replace operator, and specify a regex pattern '[^a-zA-Z]', for example:

$a = 'Never a foot too far, even.'

$a -Replace '[^a-zA-Z]',''

0 comments

Discussion is closed.

Feedback usabilla icon