Is there any way in clojure to check the equality of strings? i.e. I need to know, whether their contents is equal, not location.
thanks.
|
Is there any way in clojure to check the equality of strings? i.e. I need to know, whether their contents is equal, not location. thanks. |
|||
|
|
|
Equality in Clojure (the = function) always tests value, not identity, so two strings are = if they have the same contents. If you want to test identity, use the identical? function. |
|||
|
|
The JVM has a string pool that holds at most one entry per value, so identity and value equality are the same comparison. There are ways using |
|||||
|