Given a file path such as: \\\\server\\folder_A\\folder_B\\etc\\more.mov
I need a regex that\'ll give me the last backslash so I can extract the actual file
Do you absolutely have to use regex? Why not split the string and grab the last element?