mes: Add string-drop-right.
* module/srfi/srfi-13.mes (string-drop-right): New function.
This commit is contained in:
parent
1f8a217694
commit
c5f9623c55
|
@ -59,6 +59,10 @@
|
|||
(define (string-drop s n)
|
||||
(list->string (list-tail (string->list s) n)))
|
||||
|
||||
(define (string-drop-right s n)
|
||||
(let ((length (string-length s)))
|
||||
(list->string (list-head (string->list s) (- length n)))))
|
||||
|
||||
(define (string-delete pred s)
|
||||
(let ((p (if (procedure? pred) pred
|
||||
(lambda (c) (not (eq? pred c))))))
|
||||
|
|
Loading…
Reference in a new issue