I have this as code to run the program

Code:
Process.Start(ListBox1.SelectedItem.ToString.Split(New String() {"  "}, StringSplitOptions.None)(1))
Which used to work but then I added a "Preview image" function like this :
Code:
(ListBox1.SelectedItem.ToString.Split(New String() {"  Image:"}, StringSplitOptions.None)(1))
I now discovered that the first code is useless, because it selects everything after " " to run, including the "Image:"

This is how a listbox item is stored:
Code:
Tomb Raider Level Editor - Original  C:\Program Files\Tomb Raider - Level Editor\tomb4.exe  Image:C:\Program Files\Tomb Raider - Level Editor\load.bmp
As you can see it'll use this
Code:
C:\Program Files\Tomb Raider - Level Editor\tomb4.exe  Image:C:\Program Files\Tomb Raider - Level Editor\load.bmp
to run

Is there any way I can make it choose the path from " " and when it finds "image:" it stops?