Does any one know of a regular expression pattern that can simultaneously find the file path, file name, and file extension?
for example for the string: "c:\windows\temp\foo.bar "
find the following matches:
"c:\windows\temp"
"foo"
"bar"
or another example: "\\fileserver\share\temp\f
oo.bar"
"\\fileserver\share\temp"
"foo"
"bar"
Thanks in advance!
Start Free Trial