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 my application I need to convert clojure keyword eg. :var_name into a string "var_name". Any ideas how that could be done?

share|improve this question

1 Answer

up vote 47 down vote accepted
user=> (doc name)
-------------------------
clojure.core/name
([x])
  Returns the name String of a string, symbol or keyword.
nil
user=> (name :var_name)
"var_name"
share|improve this answer
I cannot imagine a more complete answer, but just for fun I shall dare someone to come up with it. – Hamish Grubijan Sep 15 '10 at 15:55
@Hamish Perhaps by adding (source name)? – ponzao Sep 15 '10 at 18:05
How name works should not be of interest. The docstring is the contract. Anything else is an implementation detail, one should not rely upon. – kotarak Sep 15 '10 at 19:32
1  
Thanks! My initial reaction was to do this: (.replaceFirst (.toString (keyword "abc")) ":" "") – Susheel Javadi Sep 16 '10 at 6:26
2  
Thanks kotarak! I am loving this Clojure more every day! This is my third day. – Santosh Sep 16 '10 at 8:46
show 5 more comments

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.