Hi, I’ve found a regex that works, and is giving me the the names including spaces:
$q{s,^.*([a-zA-Z0-9s]+)_([a-zA-Z0-9s]+)_([a-zA-Z0-9s]+)$,$1,}
The strange thing is that even though the folder is named
AB001_Project Name_Client Name
I get project and client in $2 $3 respectively, but $1 only ever returns a number.
In the above example it returns 1
I’m really starting to lose my mind with this, and would appreciate any insights!
Thanks