¿Me pregunto si existe la función de división de cadenas? Algo como:Función de división de cadenas
> (string-split "19 2.14 + 4.5 2 4.3/- *")
'("19" "2.14" "+" "4.5" "2" "4.3" "/" "-" "*")
No lo he encontrado y he creado el mío. Yo uso Esquema de vez en cuando así que estaré agradecido si usted fija y sugerir la mejor solución:
#lang racket
(define expression "19 2.14 + 4.5 2 4.3/- *")
(define (string-split str)
(define (char->string c)
(make-string 1 c))
(define (string-first-char str)
(string-ref str 0))
(define (string-first str)
(char->string (string-ref str 0)))
(define (string-rest str)
(substring str 1 (string-length str)))
(define (string-split-helper str chunk lst)
(cond
[(string=? str "") (reverse (cons chunk lst))]
[else
(cond
[(char=? (string-first-char str) #\space) (string-split-helper (string-rest str) "" (cons chunk lst))]
[else
(string-split-helper (string-rest str) (string-append chunk (string-first str)) lst)]
)
]
)
)
(string-split-helper str "" empty)
)
(string-split expression)
Usted debe poner sus parens de cierre en la misma línea que la última expresión. Esto no es C :) – erjiang
No, debería hacer lo que quiera. – rightfold