June 11th, 2014

PowerTip: Split String with PowerShell

Doctor Scripto
Scripter

Summary: Easily split a string on multiple characters with Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to split a string that contains multiple separator characters (for example, a comma and a semicolon)?

Hey, Scripting Guy! Answer Specify a string with the characters in it to the Split method:

PS C:\> $string = "This,is;a;string"

PS C:\> $string.Split(',;')

This

is

a

string

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.