regular expression
I have pdf file systemname\\f$\test\xyz.pdfThe path contains single backlashUsing Java Regex how to get the filename from above pathMessage was edited by: raghuveer_vellanki
# 1
Why limit yourself to regexps? You can easily use the String.split() method to accomplish this or, if this is already a File entry, use the getName() method. I think that those options wil turn out to be much more flexible.
LionO at 2007-7-6 19:54:37 >
