Simply put I suck at anything to do with it and everytime I try to figure it out I get unexpected results.
I have a string which returns a file path lets say
c:\whatever\program\somethingelse\
I would like to parse the string so that it strips out everything before the program folder so the string would be.
program\somethingelse\ + whatever sub directories
I know basically I have to search the string for "foldername" then trim everything to the left of it but im unsure how to do it exactly.
I have a string which returns a file path lets say
c:\whatever\program\somethingelse\
I would like to parse the string so that it strips out everything before the program folder so the string would be.
program\somethingelse\ + whatever sub directories
I know basically I have to search the string for "foldername" then trim everything to the left of it but im unsure how to do it exactly.