Can someone explain to me why this doesn't work:

  (let [ p     "Bill/"
          sep (System/getProperty "file.separator")
           ]

      (if (= (last p) sep)
          (println "found separator")
          (println "no separator")
  )

The (= (last p) sep) always returns false.   If I print them out
inside pipes they look like
| / | and | / | (white space on either side of the slash).

Is this some sort of bug?   Is there a better solution for finding a
file separator at the end of a line?

Bill




-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to