.NET Regular Expression Regex Query

Snowflake

Member
Joined
Sep 16, 2014
Messages
15
Programming Experience
Beginner
Hi there, I need some assistance with a regex pattern.

What I am trying to do is filter files based on a regex expression

What the expression needs to do is find files that do not start with [f-z]\d{5} but do end in \.(dat|set)

I did try [^[f-z]\d{5}]\.(dat|set) but unfortunately it did not work.

Thanks for any help
 
Back
Top