I want to get just the filename using regex, so I\'ve been trying simple things like
([^\\.]*)
which of course work only if the filename ha
Just the name of the file, without path and suffix.
^.*[\\|\/](.+?)\.[^\.]+$