Re: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Gerry Massat
What about 1(2|3)_1(2|3) or (12|13)_(12|13) Gerry (Not a regexp expert, but I may be confusing it with pcre!:-) Travis Rabe wrote: How would I write the regex expression to match the following? 13_12,13_12 Normally I would do: [0-9]_[0-9]\\, To go after the pattern

RE: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Travis Rabe
Forum] OT: RegEx Help What about 1(2|3)_1(2|3) or (12|13)_(12|13) Gerry (Not a regexp expert, but I may be confusing it with pcre!:-) Travis Rabe wrote: How would I write the regex expression to match the following? 13_12,13_12 Normally I would do: [0-9]_[0-9]\\, To go

Re: [spam?] RE: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Stib
, September 05, 2007 10:03 AM To: Imail_Forum@list.ipswitch.com Subject: Re: [IMail Forum] OT: RegEx Help What about 1(2|3)_1(2|3) or (12|13)_(12|13) Gerry (Not a regexp expert, but I may be confusing it with pcre!:-) Travis Rabe wrote: How would I write the regex expression to match

RE: [spam?] RE: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Travis Rabe
I had tried that - that didn't seem to work. TR -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stib Sent: Wednesday, September 05, 2007 10:27 AM To: Imail_Forum@list.ipswitch.com Subject: Re: [spam?] RE: [IMail Forum] OT: RegEx Help Perhaps [0-9][0-9

Re: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Gerry Massat
between 0 and 99. TR -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gerry Massat Sent: Wednesday, September 05, 2007 10:03 AM To: Imail_Forum@list.ipswitch.com Subject: Re: [IMail Forum] OT: RegEx Help What about 1(2|3)_1(2|3) or (12|13)_(12|13) Gerry

Re[2]: [IMail Forum] OT: RegEx Help

2007-09-05 Thread Pete McNeil
@list.ipswitch.com Subject: Re: [IMail Forum] OT: RegEx Help What about 1(2|3)_1(2|3) or (12|13)_(12|13) Gerry (Not a regexp expert, but I may be confusing it with pcre!:-) Travis Rabe wrote: How would I write the regex expression to match the following? 13_12,13_12

[IMail Forum] OT: RegEx Help

2007-09-04 Thread Travis Rabe
How would I write the regex expression to match the following? 13_12,13_12 Normally I would do: [0-9]_[0-9]\\, To go after the pattern 13_12,, but that only works when the numbers are from 0-9. Since they are 12 and 13, what do I need to do differently? Basically I want to match