Hello again,
I would like to ask how could I check if the input is right:
the program asks user to input a float from a keybord, but what if user inputs a char. Is there any funcion which can check that? :confused:
Thanks in advance.
C: how to check if the float is not a char
Started by Cheer, Apr 06 2008 01:43 AM
11 replies to this topic
#1
Posted 06 April 2008 - 01:43 AM
|
|
|
#2
Posted 06 April 2008 - 05:01 AM
Use float.TryParse() to see if the value is a float. If it is, the function returns "true", if not, "false". You can then use an "if" statement to determine whether or not to actually go ahead with whatever you want to do with the float.
#3
Posted 06 April 2008 - 06:35 AM
But float.TryParse() is a part of C++, it cannot be used in C or am I wrong?
#4
Posted 06 April 2008 - 09:34 AM
Maybe. I've honestly got no idea. If you're using .NET (like all the Microsoft Express Editions), it should be the same across all languages. Try it, and if it works, great. If not, then there is one easy way to do it - use a try/catch block.
In this way, if the user types a value that is incompatible, when you try to use the data, it will generate an error, as usual. This time, however, the application will not crash, as you have effectively told the program to expect an error.
I'm not too sure about C, but here it is in C#:
Presumably the process is similar in C, and hopefully you can work out how to write it in your language. Bear in mind, however, that the try block will activate with ANY error, not necessarily an error related to the data conversion. If you change the word "Exception" in the catch() bit to "InvalidCastException" then this should only target this specific error.
Hope this helps,
Xav
In this way, if the user types a value that is incompatible, when you try to use the data, it will generate an error, as usual. This time, however, the application will not crash, as you have effectively told the program to expect an error.
I'm not too sure about C, but here it is in C#:
try
{
//Use your code to get the input here.
//Here's one example - use your own one.
float f = (float) Console.ReadLine();
//If the code execution gets here, we know it was successful.
Console.WriteLine("Successful.");
}
catch (Exception exc)
{
//This code only runs if there was an error in the "try" section.
//If so, we know the conversion was not successful.
Console.WriteLine("You did not enter a float value, stupid.");
Console.WriteLine("The error message was: " + exc.Message);
}
Presumably the process is similar in C, and hopefully you can work out how to write it in your language. Bear in mind, however, that the try block will activate with ANY error, not necessarily an error related to the data conversion. If you change the word "Exception" in the catch() bit to "InvalidCastException" then this should only target this specific error.
Hope this helps,
Xav
#5
Posted 06 April 2008 - 09:42 AM
I've just had a thought - you said that the float.TryParse() was a C++ function. I've used the function in Visual Basic and C#, and it works fine. I used the Microsoft Visual Studio Express editions, which are slightly different from normal code, as the code relies on the Microsoft .NET Framework to run. This is known as "managed code".
Any language that you are writing for the .NET framework will have access to the .NET functions, so you should be able to access it from C. Otherwise, I can't guarantee it. Unfortunately, there is no C version, but there are C++ and C# versions, available from the links provided.
Any language that you are writing for the .NET framework will have access to the .NET functions, so you should be able to access it from C. Otherwise, I can't guarantee it. Unfortunately, there is no C version, but there are C++ and C# versions, available from the links provided.
#6
Posted 06 April 2008 - 04:50 PM
In C, take user input as a string. Then attempt to convert it to a float (perhaps using strtod). If conversion was successful, you had a float -- as a bonus, you get the converted result.
#7
Posted 07 April 2008 - 03:02 AM
Try ASCII values and when user enters an unwanted character then please check whether it matches with the respective ASCII value. For capital alphabets you can specify the range 65-90 and for small alphabets it is 97-122 using if condition. There are ASCII values for special characters also. Each character in C is internally represented by it's ASCII value.
#9
Posted 07 April 2008 - 08:45 AM
Goodluck said:
Try ASCII values and when user enters an unwanted character then please check whether it matches with the respective ASCII value. For capital alphabets you can specify the range 65-90 and for small alphabets it is 97-122 using if condition. There are ASCII values for special characters also. Each character in C is internally represented by it's ASCII value.
But floating point values can contain several nondigit characters in certain locations. The string "-123.45e+6" represents a valid floating-point number.
[FONT="Fixedsys"]#include <stdio.h>
#include <stdlib.h>
int main(void)
{
const char *text[] =
{
"-123.45e+6",
"-123.45.e+6",
"+123.45e-6",
"+123.45e-6+",
};
size_t i;
for ( i = 0; i < sizeof text / sizeof *text; ++i )
{
char *end;
[COLOR="Blue"]double value = strtod(text[i], &end);[/COLOR]
if ( *end == '\0' )
{
printf("value = %g\n", value);
}
else
{
printf("failed to convert %s\n", text[i]);
}
}
return 0;
}
/*
value = -1.2345e+008
failed to convert -123.45.e+6
value = 0.00012345
failed to convert +123.45e-6+
*/[/FONT]
#11
Posted 09 April 2008 - 12:08 PM
Thanks ;) Great :)


Sign In
Create Account

Back to top









