Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In clojure, what is the idiomatic way to convert a keyword:

:some-keyword

to a string:

"some-keyword"
share|improve this question

2 Answers

up vote 9 down vote accepted

use name to do this:

user=> (name :some-keyword)
"some-keyword"
share|improve this answer

As Alex Ott mentionned, name is the best function for this, clojure.contrib also has a function you can call on any type: as-str which does this too:

(str :foo :bar)     ;;=> ":foo:bar"
(as-str :foo :bar)  ;;=> "foobar" 

See http://clojure.github.com/clojure-contrib/string-api.html#clojure.contrib.string/as-str

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.