I’m using jquery.grep to clean a string and return only digits.
This is what I have:
var TheInputArray = TheInput.slice();
var TheCleanInput = jQuery.grep(TheInputArray, function (a) {
return parseInt(a, 10);
});
I take a string, split it into an array and use the parseInt function to check if it’s a number. The problem is that when the value of a is 0, it skips that element. What changes do I need to do to make this code work?
Thanks.
You can use regular expressions: