cl:string-find   scheme


Defined in:  https://github.com/lambdamusic/extempore-extensions/blob/main/init/init_lisp.xtm

Implementation

;
;; hack for checking is a string exists in another string
; (if #f (cl:string-find-char "M 3.4, Central California" "M"))
(define cl:string-find
   (lambda (s find)
      (if (> (string-length s)
             (string-length (cl:string-replace s find "")))
          #t
          #f)))


Back to Index

Similar Entries