Re: split function problem.

2003-07-09 Thread Wiggins d'Anconia
Sara wrote: I am extremely thankful to you for your help. I always loved your way of teaching and explaining the code bit by bit. One more question I searched the google for "HTH" abbreviation but didn't find anything. Can you tell me what does it mean? http://info.astrian.net/jargon/terms/h.htm

RE: split function problem.

2003-07-09 Thread Charles K. Clarkson
Sara <[EMAIL PROTECTED]> wrote: : : One more question I searched the google for : "HTH" abbreviation but didn't find anything. : : Can you tell me what does it mean? Hope That Helps And sometimes: Hotter Than Hell :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: split function problem.

2003-07-09 Thread Sara
riginal Message - From: Charles K. Clarkson <[EMAIL PROTECTED]> To: 'Sara' <[EMAIL PROTECTED]>; 'org' <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 6:30 AM Subject: RE: split function problem. > Sara <[EMAIL PROTECTED]> wrote: > : > : A

Re: split function problem.

2003-07-09 Thread Sara
: frbn <[EMAIL PROTECTED]> To: Sara <[EMAIL PROTECTED]> Cc: org <[EMAIL PROTECTED]> Sent: Tuesday, July 08, 2003 11:49 PM Subject: Re: split function problem. > hi, > $name_with_id looks like a comma separated list > you can simply *not tested*: > > ($name

RE: split function problem.

2003-07-09 Thread Charles K. Clarkson
Sara <[EMAIL PROTECTED]> wrote: : : An input string like; : : $name_with_id = "Deiley, Sara Jr., 1234"; : : another example could be : : $name_with_id = "DEILEY SARA, Jr,. 123"; : : Two things are for sure in it always. : : 1- First part contains the alphabets (caps or small) with any : numb

RE: split function problem.

2003-07-09 Thread Lile, James AZ2 (VAW-115)
I would prbally add a seperator less common than a comma such as || to use the split funciton on... james hi, $name_with_id looks like a comma separated list you can simply *not tested*: ($name,$id) = split (/,/, $name_with_id) -- franck Sara wrote: > An input string like; > > $n

Re: split function problem.

2003-07-08 Thread frbn
hi, $name_with_id looks like a comma separated list you can simply *not tested*: ($name,$id) = split (/,/, $name_with_id) -- franck Sara wrote: An input string like; $name_with_id = "Deiley, Sara Jr., 1234"; another example could be $name_with_id = "DEILEY SARA, Jr,. 123"; Two things are fo