I've searched for this topic a lot but haven't found my exact issue. Also I seemingly can't figure out how to adapt the code samples for my use.
I'm trying to split a "file directory string" into substrings from right to left.
"C:\Users\Me\CustomerName\ProductName\2017\"
And split this from right to left, to
year
productname
customername
My attempts at using Split() to get it working, have always split it in the wrong places.
==part?