added string-contains? at request from Ostermann
This commit is contained in:
parent
48e07fb2ab
commit
2981cbfd68
|
@ -567,6 +567,14 @@ namespace.
|
||||||
(cerr 'string-lower-case? (string? s) "string" s)
|
(cerr 'string-lower-case? (string? s) "string" s)
|
||||||
(andmap char-lower-case? (string->list s))))
|
(andmap char-lower-case? (string->list s))))
|
||||||
|
|
||||||
|
;; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
(define-teach beginner string-contains?
|
||||||
|
(lambda (s t)
|
||||||
|
(cerr 'string-contains? (string? s) "string" s)
|
||||||
|
(cerr 'string-contains? (string? t) "string" t)
|
||||||
|
(cons? (regexp-match s t))))
|
||||||
|
|
||||||
(provide
|
(provide
|
||||||
beginner-string-ith
|
beginner-string-ith
|
||||||
beginner-replicate
|
beginner-replicate
|
||||||
|
@ -578,4 +586,6 @@ namespace.
|
||||||
beginner-string-alphabetic?
|
beginner-string-alphabetic?
|
||||||
beginner-string-whitespace?
|
beginner-string-whitespace?
|
||||||
beginner-string-upper-case?
|
beginner-string-upper-case?
|
||||||
beginner-string-lower-case?)
|
beginner-string-lower-case?
|
||||||
|
beginner-string-contains?
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user