Hi,
I have multiple files with different filenames and want to test out regular expressions.
I can use regexp=".*" to pick up all files, and also regexp=".*\.xxx $" to pick up all files ending with ".xxx".
If I want to pick up files that does not finish with ".xxx" do I use regexp=".*[\^.xxx]$"
Thanks.
I have multiple files with different filenames and want to test out regular expressions.
I can use regexp=".*" to pick up all files, and also regexp=".*\.xxx $" to pick up all files ending with ".xxx".
If I want to pick up files that does not finish with ".xxx" do I use regexp=".*[\^.xxx]$"
Thanks.
Comment