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.

I have the following code to try to remove non-numbers froma string:

(apply str 
    (flatten 
        (map 
            (fn[x] 
                (if (number? x) x)) 
                "ij443kj"
        )
    )
)

But it always returns an empty string instead of "443". Does anyone know what I am doing wrong here and how I can get the desired result?

share|improve this question

2 Answers

up vote 12 down vote accepted

number? doesn't work that way. It checks the type. If you pass it a character, you'll get back false every time, no matter what the character is.

I'd probably use a regular expression for this, but if you want to keep the same idea of the program, you could do something like

(apply str (filter #(#{\0,\1,\2,\3,\4,\5,\6,\7,\8,\9} %) "abc123def"))

or even better

(apply str (filter #(Character/isDigit %) myString))
share|improve this answer
Yes you are right. I agree that number? doesn't work that way. Which function should I use instead? – Zubair May 18 '11 at 14:38
I edited my answer with a suggestion. – deong May 18 '11 at 14:40
Brilliant, that worked, thanks! – Zubair May 18 '11 at 14:40
6  
Note that you dont need to wrap you set in a function. Set implments IFn so you can just write (filter #{\1\2\3} "abc123def") – nickik May 18 '11 at 15:00
Great that worked for me too: I just had an issue with Doubles, so I have changed it like this: (filter #(#{\0,\1,\2,\3,\4,\5,\6,\7,\8,\9,\.} %) my-double-number) Thanks! – nuvio Apr 6 '12 at 16:55

There is an even simpler way, use a regular expression:

(.replaceAll "ij443kj" "[^0-9]" "")
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.