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

Regular expression for negative and positive decimal value so that can be matched with string using pattern and matcher for the correct implementation can any one will provide me with that

share|improve this question
1  
No kidding. Nine previous questions and not a single one of them got an answer worth accepting? – BlairHippo Jan 15 '10 at 14:38
1  
Puncuation is really good. – mR_fr0g Jan 15 '10 at 14:55
4  
So's your spelling :) – Tim Pietzcker Jan 15 '10 at 17:58

2 Answers

up vote 5 down vote accepted

(\+|-)?([0-9]+(\.[0-9]+))

share|improve this answer
Replace the second + with a * to match things like ".4" as well (credited to the notes in the incorrect answer below). – Ryan Shillington May 23 '12 at 16:36
For anyone using this to do validation on number-only text boxes, if your regex engine supports it, you can wrap the expression with start and end anchors, like so ^(\+|-)?([0-9]+(\.[0-9]+))$. – kevin628 Sep 7 '12 at 17:08

Try this:

[+-]?\d+\.\d+
share|improve this answer
Note that this will fail to recognize patterns like ".4" (no leading zero) or "10" (no decimal). But given the vagueness of the "question," I have no idea if that's a problem or not. – BlairHippo Jan 15 '10 at 14:45
yeah; since OP said "decimal", I think decimal point is mandatory, but I'm also unsure about that optional integer – Rubens Farias Jan 15 '10 at 16:36
Well, if we go with the mandatory decimal point, could always do it as "[+-]?\d*\.\d+". Handles the optional leading 0, at least. – BlairHippo Jan 15 '10 at 17:18
'Decimal' does not mean non-integer. What if OP had said 'binary' or 'octal'? All those qualifiers just limit the range of digits. All such numbers may or may not have a fraction. – gary Jan 15 '10 at 21:48

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.