I'm looking for help on Accept and Reject patterns. Just a couple of examples.
Can you use regular expressions? Are the patterns case sensitive?
Thanks,
M
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2000-12-10
NOT case sensitive!
-a '*clapton*' -a '*cocker*'
matches any subjects with:
CoCkEr, CLAPTON, clapTon
if you would like to get only specific filetypes use:
-a '*clapton*.midi*'
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm looking for help on Accept and Reject patterns. Just a couple of examples.
Can you use regular expressions? Are the patterns case sensitive?
Thanks,
M
NOT case sensitive!
-a '*clapton*' -a '*cocker*'
matches any subjects with:
CoCkEr, CLAPTON, clapTon
if you would like to get only specific filetypes use:
-a '*clapton*.midi*'
is there a way to include spaces? i'm not sure if this is working correctly.
Reject: {*microsoft* {* ms *} {* vb *} *visual* *windows* {* .net *} {* ado *} *msce* *csharp* *audio*}
Yes, and your patterns look fine. From the command line, for example:
brag -a '*accept this*' ...
~ Akos.