Jun 7, 2006 #1 ddrillich Technical User Jun 11, 2003 546 US Good Day, I need to parse the following string: firstName,lastName,firstname.lastname@bankone.com,U999999,12345,CS Any nice way to accomplish it? Maybe via a regular expression? Many thanks, Dan
Good Day, I need to parse the following string: firstName,lastName,firstname.lastname@bankone.com,U999999,12345,CS Any nice way to accomplish it? Maybe via a regular expression? Many thanks, Dan
Jun 7, 2006 1 #2 jemminger Programmer Jun 25, 2001 3,453 US why not split it into an array? ar = "firstName,lastName,firstname.lastname@bankone.com,U999999,12345,CS".split(',') first_name = ar[0] last_name = ar[1] ... -jeff http://www.jeffemminger.comlost: one sig, last seen here. Upvote 0 Downvote
why not split it into an array? ar = "firstName,lastName,firstname.lastname@bankone.com,U999999,12345,CS".split(',') first_name = ar[0] last_name = ar[1] ... -jeff http://www.jeffemminger.comlost: one sig, last seen here.
Jun 7, 2006 Thread starter #3 ddrillich Technical User Jun 11, 2003 546 US Beautiful thing! Thanks! Upvote 0 Downvote