What's the simplest way to break down a String with special characters in it?
My String will be something like this...
Text1.Text= "C:\Folder1\SubFolder1\Pic.jpg"
I want to break it down to:
Text2.Text = "C:"
Text3.Text = "Folder1"
Text4.Text = "SubFolder1"
Text5.Text = "Pic.jpg"
Thanks


Reply With Quote