I've got a string such as:
"3;#bctest/Lists/Test List 1/Folder 1\"
I want to use Regex to extract that last folder, in this case: "Folder 1"
So essentially, I need to always extract the string immediately after the last forward slash (/), without including the last backslash (\). It's important to note that the string can contain any number of forward slashes, but I'm only interested in the last forward slash.
Any help would be appreciated.
