lilypond-user
[Top][All Lists]
Advanced

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

list of strings from a string


From: Freeman Gilmore
Subject: list of strings from a string
Date: Wed, 3 Jun 2020 10:25:12 -0400

\version "2.20.0"

#(define Z '())

j = #(define-void-function     % Starting form here.
     (x)
     (string>?)
     (set! Z x ))

 \j  "-3 A -6 1 -B"

#(define Y (string-split Z #\sp ))
  #(display Y)  #(newline)

  % Gives me this: (-3 A -6 1 -B), string-split => list, I do want a list but
  % I need: ("-3" "A" "-6" "1" "-B"), how do I get this?  A list of strings.

Thank you, ƒgl



reply via email to

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