[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Rationale for split-string?
From: |
Richard Stallman |
Subject: |
Re: Rationale for split-string? |
Date: |
Tue, 22 Apr 2003 21:00:43 -0400 |
So I suppose you want a simpler version of Luc Teirlinck's
suggestion. How about:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; one function, three arguments
(defun split-string (string &optional separators omit-nulls)
"Splits STRING into substrings bounded by matches for SEPARATORS.
The beginning and end of STRING, and each match for SEPARATORS, are
splitting points. The substrings between the splitting points are
collected in a list, which is returned. (The substrings matching
SEPARATORS are removed.)
If SEPARATORS is nil, it defaults to \"[ \f\t\n\r\v]+\".
If OMIT-NULLs is t, zero-length substrings are omitted from the list
(so that for the default value of SEPARATORS leading and trailing
whitespace are trimmed). If nil, all zero-length substrings are
retained, which correctly parses CSV format, for example."
That seems like the right thing, except I think that if SEPARATORS is
nil, OMIT-NULLS should default to t.
- Re: Rationale for split-string?, (continued)
- Re: Rationale for split-string?, Luc Teirlinck, 2003/04/22
- Re: Rationale for split-string?, Jerry James, 2003/04/22
- Re: Rationale for split-string?, Luc Teirlinck, 2003/04/22
- Re: Rationale for split-string?, Stephen J. Turnbull, 2003/04/22
- Re: Rationale for split-string?, Miles Bader, 2003/04/22
- Re: Rationale for split-string?, Luc Teirlinck, 2003/04/22
- Re: Rationale for split-string?, Luc Teirlinck, 2003/04/22
- Re: Rationale for split-string?,
Richard Stallman <=
- Re: Rationale for split-string?, Stephen J. Turnbull, 2003/04/23
- Re: Rationale for split-string?, Richard Stallman, 2003/04/24