Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
981 views
in Technique[技术] by (71.8m points)

regex - Java regexp for file filtering

I would like to build a regexp in Java that would be passed in a FilenameFilter to filter the files in a dir.

The problem is that I can't get the hang of the regexp "mind model" :)

This is the regexp that I came up with to select the files that I would like to exclude

((ABC|XYZ))+w*Test.xml

What I would like to do is to select all the files that end with Test.xml but do not start with ABC or XYZ.

Could you please add any resources that could help me in my battle with regexps.

Thanks

The following resource explains a lot of things about regexp regular-expressions.info

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This stuff is easier, faster and more readable without regexes.

if (str.endsWith("Test.xml") && !str.startsWith("ABC"))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...