Page 1 of 1

REQ regex for subject line beginning with numbers

PostPosted: Fri Nov 14, 2003 5:16 am
by yungblud
I would welcome it if someone could give me a regex to use in the filter. I want to be able to see only those subject lines which begin with a number.

Eg. "099 This is the first example"

Secondly, I would like to see only those subject lines which begin with a left square bracket followed by a number.

Eg. "[133/400] This is the second example"

Thank you for any help.

PostPosted: Fri Nov 14, 2003 12:14 pm
by Quade
Maybe it's time to learn Regex? Dexter you still have a link to that Regex page?

PostPosted: Fri Nov 14, 2003 8:35 pm
by Pyrohydra

PostPosted: Fri Nov 14, 2003 11:54 pm
by Quade
Thanks.

Re: REQ regex for subject line beginning with numbers

PostPosted: Sat Nov 15, 2003 5:07 am
by Smite
yungblud wrote:I would welcome it if someone could give me a regex to use in the filter. I want to be able to see only those subject lines which begin with a number.

Eg. "099 This is the first example"


^[0-9]

yungblud wrote:Secondly, I would like to see only those subject lines which begin with a left square bracket followed by a number.

Eg. "[133/400] This is the second example"

^\[[0-9]

It's really not hard to learn...

PostPosted: Sat Nov 15, 2003 9:52 am
by yungblud
Quade wrote:Maybe it's time to learn Regex? Dexter you still have a link to that Regex page?


Some of the beginner's websites for regex which I have been to are truly mind-boggling!

The Newsbin link seems altogether more friendly.

Thanks. Iwill read through those pages.