Hi all,
I'm trying to get the filename out of the string
using the search and replace function:
Search:
While
works as expected (everything left of the filename is found), the RegEx above leads to error: "Invalid Regular Expression!"
I do not see the mistake I made, and even
brings up the same error.
-> What am I doing wrong?
(Btw: File is Windows-1252, RegEx mode is "Perl", UE 64-bit German Version 25.20.0.72)
I'm trying to get the filename out of the string
Code: Select all
\\NFS\directory\userspace\aaaaaa.bbbb.ccc
Search:
Code: Select all
.*\\(.*)\..*
Code: Select all
.*\\
I do not see the mistake I made, and even
Code: Select all
(.*\\)
-> What am I doing wrong?
(Btw: File is Windows-1252, RegEx mode is "Perl", UE 64-bit German Version 25.20.0.72)
Regards, Max