Software >> OS >> Windows >> Scripting >> VBScript >> How to split a line with a specific delimiter character

aItems = Split(sLine,";")
 for each sItem in aItems

 ... code to process sItem


 next