Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tested the following code and it returned me false when I expected it to be true..How can I fix this and why it's returning me false?

<script type="text/javascript">

 var str3 ="-12346dsfs56";
var reg4 =/^(-{1})\d+$/;
alert(reg4.test(str3));
</script>
share|improve this question

2 Answers

up vote 3 down vote accepted

The regex returns False because that string is not a number (it contains letters)!

If you drop the $, the regex will only check if the string begins with a - and at least one digit. And you can drop the {1}, it's unnecessary since one occurrence is the default for a regex token.

share|improve this answer
1  
It also rejects numbers with a decimal point. – Thilo Jul 19 '11 at 6:08
@Thilo: Good point. – Tim Pietzcker Jul 19 '11 at 6:08
I didn't notice that thanks.. – Vimal Basdeo Jul 19 '11 at 6:09

There are 2 simple ways i can think of.

first if its a number you can check if it's less than 0

if (number < 0) {
  // do stuff
}

or in your case a string you can check if the first character is a -

if (str[0] == "-") {
   // do stuff
}
share|improve this answer
Good to see a non-RegExp solution where it's not needed. But support for index access to strings is not universal (fails in IE), really should use charAt(0) or substr(0,1). – RobG Jul 19 '11 at 6:53

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.