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.

Possible Duplicate:
Create WPF TextBox that accepts only numbers

How i can check if inputed value in textbox contains text? I want to user input only numbers Thanks

share|improve this question

marked as duplicate by V4Vendetta, Bobby, mdm, genesis, forsvarir Jul 18 '11 at 11:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 5 down vote accepted

Assuming you are using integers then:

int value = 0;
if(!Int32.TryParse(strInput, out value))
{
    // Validation failed - show error or feedback to user
}
else
{
    // Validation successful
}

For doubles, replace Int32.TryParse with Double.TryParse etc.

There is probably some fancy WPF way to do this as well (as indicated by V4Vendetta's comment).

share|improve this answer
+1 for TryParse rather than Parse - you don't want to be throwing exceptions if you're expecting things not to parse correctly sometimes. – Shaul Jul 18 '11 at 11:10
Thanks so much. Can you help me again? I want to allow numbers and . (dot) how i can do that? – Irakli Lekishvili Jul 18 '11 at 13:15
Well, the example I posted is for Integers. You could try using Double.TryParse instead of Int32.TryParse - a 'double' allows you to have decimal places, so it will allow numbers like 5.5 as well as just 5. Hope it helps :) – mdm Jul 18 '11 at 13:44

You could you a regular expression to check for @"[^\d]" if true there are non numbers

Alternatively @"^\d+$" will match ints and @"\d+(\.\d+)?$" will match decimals

Alternatively you could use a maskedtextbox control, either by embeding the winforms control using a host control or using something like Infragistics editor.

share|improve this answer

If you want only number check if you can parse it. If you want int use int.Parse()

share|improve this answer

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