aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2009-08-18 16:17:06 -0400
committerStuart Sierra <mail@stuartsierra.com>2009-08-18 16:17:06 -0400
commit8b360da5be1cac6612b3882037efa4c4c89ae643 (patch)
tree712d8c1d1381e74a022f33a8e28d27a13a6b60dc /src
parent9f3bc3b359a977e978a6ad0c8cd0481b5765f511 (diff)
str_utils2.clj: implemented swap-case, added capitalize
Diffstat (limited to 'src')
-rw-r--r--src/clojure/contrib/str_utils2.clj30
1 files changed, 27 insertions, 3 deletions
diff --git a/src/clojure/contrib/str_utils2.clj b/src/clojure/contrib/str_utils2.clj
index 5a32df6f..25e03ad3 100644
--- a/src/clojure/contrib/str_utils2.clj
+++ b/src/clojure/contrib/str_utils2.clj
@@ -235,10 +235,34 @@
(replace s #"[\r\n]+$" ""))
(defn title-case [#^String s]
- (throw (IllegalStateException. "title-case not implemented yet.")))
+ (throw (Exception. "title-case not implemeted yet")))
-(defn swap-case [#^String s]
- (throw (IllegalStateException. "swap-case not implemented yet.")))
+(defn swap-case
+ "Changes upper case characters to lower case and vice-versa.
+ Handles Unicode supplementary characters correctly. Uses the
+ locale-sensitive String.toUpperCase() and String.toLowerCase()
+ methods."
+ [#^String s]
+ (let [buffer (StringBuilder. (.length s))
+ ;; array to make a String from one code point
+ array (make-array Integer/TYPE 1)]
+ (docodepoints [c s]
+ (aset-int array 0 c)
+ (if (Character/isLowerCase c)
+ ;; Character.toUpperCase is not locale-sensitive, but
+ ;; String.toUpperCase is; so we use a String.
+ (.append buffer (.toUpperCase (String. array 0 1)))
+ (.append buffer (.toLowerCase (String. array 0 1)))))
+ (.toString buffer)))
+
+(defn capitalize
+ "Converts first character of the string to upper-case, all other
+ characters to lower-case."
+ [#^String s]
+ (if (< (count s) 2)
+ (.toUpperCase s)
+ (str (.toUpperCase (subs s 0 1))
+ (.toLowerCase (subs s 1)))))
(defn ltrim
"Removes whitespace from the left side of string."