I need to be able to be able to break down a string and get each part of the string like so:
Example: "C:\Program Files (x86)\Mozilla Firefox\dictionaries
" (I Start with this)
(and i get these four)
"/C:"
"/C:/Program Files (x86)"
"/C:/Program Files (x86)/Mozilla Firefox"
"/C:/Program Files (x86)/Mozilla Firefox/dictionaries"
I am developing in 4Test and you might not be familiar with it but as long as theres no built in functions in the code I can reproduce it here. I am familiar with c#
Edit**** Sorry There was meant to be a slash in front of each newly reproduced string. It is possible to get a solution not involving String.Split as it is not available in language I am using, I just asked for a solution in c# without built-in functions due to the low popularity of the scripting language I am using.