I am currently splitting a string at every occurrence of a forward slash. In the case of a path that uses backward slashes instead of forward slashes, how can I accomplish the split function at all backward slashes if they are instead used? Thanks for any help.
Dim p() as string
p = Split(strP, "/")'Or backward slash
1 Answer