Chris Santerre <[EMAIL PROTECTED]> writes:
> If I work the regex even further so it reads:
>
> (?:domain1|domain2|domain3)\.com
>
> rather then:
>
> (?:domain1\.com|domain2\.com|domain3\.com)
>
> Will it run even faster? Less memory? Or is it a tradeoff between the two?
In fact, looking at my cop
Updated from this weekends spam. That one Guy selling the Vdrug had about 8
more domains.
If I work the regex even further so it reads:
(?:domain1|domain2|domain3)\.com
rather then:
(?:domain1\.com|domain2\.com|domain3\.com)
Will it run even faster? Less memory? Or is it a tradeoff between th