I want to have a string in the following format
"FAG001 FAG002 FAG003"
and want to split it into
"FAG001" "FAG002" "FAG003"
using a regular expression. Unfortunately my knowledge of regular expression synatax is limited to say teh least. I have tried things like
Dim result = Regex.Split(npcCodes, "([A-Z]3[0-9]3)").ToList
without luck