Gnus development mailing list
 help / color / mirror / Atom feed
* What is better for splitting: complex regexp or many rules
@ 1996-10-24  6:49 Kees de Bruin
  1996-10-25  7:56 ` Lars Magne Ingebrigtsen
  1996-10-28 23:52 ` Danny Siu
  0 siblings, 2 replies; 4+ messages in thread
From: Kees de Bruin @ 1996-10-24  6:49 UTC (permalink / raw)


I have a list of people I receive e-mail from and I would like to know what
is better: have a split entry for each person or create a complex regular
expression that matches all the e-mail addresses? The number of people
range from between 5 and 40 for a single split.

Kind regards,

-- 
Kees de Bruin                                           Tasking Software BV
Software Engineer
---------------------------------------------------------------------------
telephone:  +31 33 455 85 84                            Tasking Software BV
fax:        +31 33 455 10 05                            Plotterweg 31
email:      kees_de_bruin@tasking.com                   3821 BB  Amersfoort
WWW:        http://www.tasking.com                      The Netherlands
CompuServe: GO TASKING
---------------------------------------------------------------------------
	     -----  Quality Development Tools Worldwide  -----
		    -----------------------------------


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: What is better for splitting: complex regexp or many rules
  1996-10-24  6:49 What is better for splitting: complex regexp or many rules Kees de Bruin
@ 1996-10-25  7:56 ` Lars Magne Ingebrigtsen
  1996-10-28 23:52 ` Danny Siu
  1 sibling, 0 replies; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 1996-10-25  7:56 UTC (permalink / raw)


Kees de Bruin <kees_de_bruin@tasking.nl> writes:

> I have a list of people I receive e-mail from and I would like to know what
> is better: have a split entry for each person or create a complex regular
> expression that matches all the e-mail addresses? The number of people
> range from between 5 and 40 for a single split.

I don't think it matters much.  Do whatever feels most comfortable to
you. 

-- 
  "Yes.  The journey through the human heart 
     would have to wait until some other time."


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: What is better for splitting: complex regexp or many rules
  1996-10-24  6:49 What is better for splitting: complex regexp or many rules Kees de Bruin
  1996-10-25  7:56 ` Lars Magne Ingebrigtsen
@ 1996-10-28 23:52 ` Danny Siu
  1996-10-29  9:35   ` Per Abrahamsen
  1 sibling, 1 reply; 4+ messages in thread
From: Danny Siu @ 1996-10-28 23:52 UTC (permalink / raw)


Kees de Bruin writes:

  KdB> I have a list of people I receive e-mail from and I would like to
  KdB> know what is better: have a split entry for each person or create a
  KdB> complex regular expression that matches all the e-mail addresses? The
  KdB> number of people range from between 5 and 40 for a single split.

  KdB> Kind regards,

I am using a single not-so-complex regexp for the mails that my Berkeley
friends send me.

((re-search-forward "^\\(To\\|[Cc][Cc]\\):.*\\(auluen@\\|beatrice@\\|bentse@\\|blam@\\|bonnieh@\\|burtonl@\\|fchan@\\|yiu@\\|jackchow@\\|jwong@\\|leric@\\|psyeung@\\|sfung@\\|stsf@\\|syang@\\|tonyc@\\|wleung@\\|wwwong@\\).*"
		       nil t)
    (list "Berkeley-HK-Friends"))

It's easy enough for me to add or remove entry in this regexp.

Anyone lisp expert knows the performace trade off btw two cases?

-- 
                                                                ^..^
 '/..\"                                                        ( oo )  )~
m( oo )m                                                         ,,  ,,
/=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\
|  Danny Dick-Fung Siu                http://www-leland.stanford.edu/~dsiu |
|  Reference System Group             http://www.csua.berkeley.edu/~dsiu   |
|  Adobe Systems Incorporated       E-Mail:<dsiu@alumni.eecs.berkeley.edu> |
|       "What do you expect from a         <dsiu@leland.stanford.edu>      |
|          Cal. Berkeley grad.?"           <dsiu@adobe.com>                |
\=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=/


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: What is better for splitting: complex regexp or many rules
  1996-10-28 23:52 ` Danny Siu
@ 1996-10-29  9:35   ` Per Abrahamsen
  0 siblings, 0 replies; 4+ messages in thread
From: Per Abrahamsen @ 1996-10-29  9:35 UTC (permalink / raw)



Danny Siu <dsiu@Adobe.COM> writes:

> Anyone lisp expert knows the performace trade off btw two cases?

Both cases are unlikely to be significant compared to the time used
for disk I/O when splitting mail.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1996-10-29  9:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1996-10-24  6:49 What is better for splitting: complex regexp or many rules Kees de Bruin
1996-10-25  7:56 ` Lars Magne Ingebrigtsen
1996-10-28 23:52 ` Danny Siu
1996-10-29  9:35   ` Per Abrahamsen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).