You can often learn a lot from a simple little exercise. This article shows how to split a string three ways:
- With String.IndexOf and String.SubString methods (but mostly brute force)
- With String.Split (probably the best way)
- With a regular expression (the best way for full-boat propeller heads!)