How do I get the set of all letters in Java/Clojure?

Posted by Jason Baker on Stack Overflow See other posts from Stack Overflow or by Jason Baker
Published on 2010-04-05T12:00:52Z Indexed on 2010/04/05 12:03 UTC
Read the original article Hit count: 194

Filed under:
|
|
|

In Python, I can do this:

>>> import string
>>> string.letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'

Is there any way to do something similar in Clojure (apart from copying and pasting the above characters somewhere)? I looked through both the Clojure standard library and the java standard library and couldn't find it.

© Stack Overflow or respective owner

Related posts about clojure

Related posts about java