match-string   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern.xtm

Implementation

(define match-string
  (lambda (e em)
    (if (not (string? em)) MATCH-FAILED
        (if (string=? e em)
            MATCH-TRUE ;; e
            MATCH-FAILED))))


Back to Index