How do I validate the string input from a UITextField? I want to check that the string is numeric, including decimal points.
|
I use this code in my Mac app, the same or similar should work with the iPhone. It's based on the RegexKitLite regular expressions and turns the text red when its invalid.
|
|||||||||||||
|
|
You can do it in a few lines like this:
-- this is for validating input is numeric chars only. Look at the documentation for |
|||||
|
|
There are a few ways you could do this:
IMO, using something like I think using NSNumberFormatter would be the best option, since it takes locale into account (ie, the number |
|||||||||||||||||
|
|
If you want a user to only be allowed to enter numerals, you can make your ViewController implement part of UITextFieldDelegate and define this method:
There are probably more efficient ways, but I find this a pretty convenient way. And the method should be readily adaptable to validating doubles or whatever: just use scanDouble: or similar. |
|||
|
|
|
||||
|
|
|
I wanted a text field that only allowed integers. Here's what I ended up with (using info from here and elsewhere): Create integer number formatter (in UIApplicationDelegate so it can be reused):
Use filter in UITextFieldDelegate:
|
||||
|
|
|
You can use the doubleValue of your string like
i think this will return a as 0.0 if the string is invalid (it might throw an exception, in which case you can just catch it, the docs say 0.0 tho). more info here |
|||||
|
|
|||
|
|
|
For integer test it'll be:
|
|||
|
|
|
To be more international (and not only US colored ;-) ) just replace in the code above by
|
||||
|
|
|
This answer uses NSFormatter as said previously. Check it out:
I hope it helps someone. =) |
||||
|
|
|
Here are a few one-liners which combine Peter Lewis' answer above (iPhone how to check that a string is numeric only) with NSPredicates
|
|||
|
|
|
Hi had the exact same problem and I don't see the answer I used posted, so here it is. I created and connected my text field via IB. When I connected it to my code via Control+Drag, I chose Action, then selected the Editing Changed event. This triggers the method on each character entry. You can use a different event to suit. Afterwards, I used this simple code to replace the text. Note that I created my own character set to include the decimal/period character and numbers. Basically separates the string on the invalid characters, then rejoins them with empty string.
Credits: Remove all but numbers from NSString |
|||
|
|
|
Not so elegant, but simple :)
|
|||
|
|


