Well you could start with this:-
vbnet Code:
  1. '
  2.         Dim Categ As String = "Rugby,NFL,Football,ecc"
  3.         Dim CategArray As String() = Categ.Split(","c)

The above separates each of the sports into separate elements in one array.