help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: a function for string splitting


From: Greg Hill
Subject: Re: a function for string splitting
Date: Tue, 26 Nov 2002 12:14:49 -0800

Luis,
Oops, too many "(".  Make that:

(let*
 (split-date (split-string "Thu, 21 Nov 2002 16:05:50 -0600 (CST)" " "))
 (day-of-week (elt split-date 0))
 (day-of-month (elt split-date 1))
 (month (elt split-date 2))
 ...)

--Greg




reply via email to

[Prev in Thread] Current Thread [Next in Thread]