I need to make a simple method in C++ to parse a string that's given as a path to a file (Example: "C:\root\filename.extension" )
What is the simplest way to do this? I've seen some examples with splitting a string, but I have several delimiters here, not just one type, (I have : \ and . ) so I'm not sure how it would work.