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>
link|improve this question

74% accept rate
feedback

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.

link|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
feedback

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
}
link|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
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.