diff options
author | Ben Sima <ben@bsima.me> | 2020-05-12 21:48:14 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-12 21:48:14 -0700 |
commit | 282762a3b12d24c3b3cec8db7e9a103245926d36 (patch) | |
tree | c4279e928265e07113b25ebc23ed1ffe50cb1012 /Alpha | |
parent | 1ff73c7c6b1c0e30c6076663f6b771f9b5bd9009 (diff) |
Add strip and flatten
Diffstat (limited to 'Alpha')
-rw-r--r-- | Alpha/Core.scm | 6 | ||||
-rw-r--r-- | Alpha/String.scm | 12 |
2 files changed, 17 insertions, 1 deletions
diff --git a/Alpha/Core.scm b/Alpha/Core.scm index 0ef1098..4ce0bbb 100644 --- a/Alpha/Core.scm +++ b/Alpha/Core.scm @@ -213,3 +213,9 @@ (if (list? x) x (list x))) + +;; is this not in srfi-1? +(define (flatten x) + (cond ((null? x) '()) + ((pair? x) (append (flatten (car x)) (flatten (cdr x)))) + (else (list x)))) diff --git a/Alpha/String.scm b/Alpha/String.scm index 4e32856..6e29663 100644 --- a/Alpha/String.scm +++ b/Alpha/String.scm @@ -1,5 +1,6 @@ (define-module (Alpha String) - #:export (replace replace-char to-string str capitalize split)) + #:export (replace replace-char to-string str capitalize split + strip lstrip rstrip)) (define (split s c) (if s @@ -31,6 +32,15 @@ (str (string-upcase (substring s 0 1)) (substring s 1 ))))) +(define (strip s char) + (string-trim-both s char)) + +(define (lstrip s char) + (string-trim s char)) + +(define (rstrip s char) + (string-trim-right s char )) + ;;; {String Fun: string-replace-substring} ;;; |