Re: Beginner code - splitting lines on whitespace

Liste des GroupesRevenir à cl lisp 
Sujet : Re: Beginner code - splitting lines on whitespace
De : Nobody447095 (at) *nospam* here-nor-there.org (B. Pym)
Groupes : comp.lang.lisp
Date : 20. Jul 2024, 10:56:27
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v7fu3n$3ffis$1@dont-email.me>
User-Agent : XanaNews/1.18.1.6
(defun white-space-p (c)
  (or (char= c #\Space) (char= c #\Tab)))
>
(defun split-on-space (string)
  (loop
   for b = (position-if-not #'white-space-p string)
   then (position-if-not #'white-space-p string :start e)
   for e = (when b (position-if #'white-space-p string :start b))
   while b
   collect (subseq string b e)
   while e))

Gauche Scheme

(use srfi-13) ;; string ops.

(define (white-space? c) (member c '(#\space #\tab)))

(define (split-on-space str :optional (start 0))
  (let1 b (and start (string-skip str white-space? start))
    (if b
      (let1 e (string-index str white-space? b)
        (cons (string-copy str b e) (split-on-space str e)))
      '())))

(split-on-space "   foo   bar  ")
  ===>
("foo" "bar")

(split-on-space  "foo")
  ===>
("foo")

(split-on-space  "")
  ===>
()


Another way:


(define-method object-apply ((s <string>) (i <integer>) j)
  (string-copy s i j))

(define (split-on-space str :optional (start 0))
  (let1 b (and start (string-skip str white-space? start))
    (if b
      (let1 e (string-index str white-space? b)
        (cons (str b e) (split-on-space str e)))
      '())))


The easy way.

(use srfi-13)

(define (split-on-space str)
  (string-tokenize str))

Date Sujet#  Auteur
20 Jul 24 * Re: Beginner code - splitting lines on whitespace2B. Pym
22 Jul 24 `- Re: Beginner code - splitting lines on whitespace1B. Pym

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal