I'm creating a file reading program. As part of this, I need to filter out any char that isn't '0-9' or '.'. Basically, any char other then these needs to trigger an IF statement.
Here's what I've tried-
if ( ( ((char)c < '0') || ((char)c > '9') ) || ((char)c != '.') )
or-
( ( ((char)c != '0' ) || ((char)c != '.' ) || ((char)c != '1' ) || ((char)c != '2' ) || ((char)c != '3' ) || ((char)c != '4' ) || ((char)c != '5' ) || ((char)c != '6' ) || ((char)c != '7' ) || ((char)c != '8' ) || ((char)c != '9' ) ))
neither of which worked...any ideas?
Thank you.
cis a character or any other integer type, you should not need the cast there. And you usually would not want to have a floating point number there ... – PaĆlo Ebermann Mar 29 '11 at 23:09