Archived:Converting C strings to numbers
m |
m (Lpvalente -) |
||
| (9 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Open C/C++]][[Category:Code Snippet]][[Category:Files/Data]][[Category:S60 3rd Edition (initial release)]][[Category:Code Snippet]] | |
| − | + | {{Archived|timestamp=20120314040752|user=roy.debjit| }} | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | | | + | |
| − | + | ||
| − | + | {{ArticleMetaData <!-- v1.2 --> | |
| − | {| | + | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> |
| − | |- | + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> |
| − | | | + | |devices= Nokia N93 |
| − | |} | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| + | |platform= S60 3rd Edition | ||
| + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= atoi(), atof(), atol(), strtod(), strtol() | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20080404 | ||
| + | |author= [[User:Nymanaki]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |subcategory= Files/Data | ||
| + | |id= CS000891 | ||
| + | }} | ||
==Overview== | ==Overview== | ||
| − | The simplest way to convert a string to an integer in Open C is to use | + | {{Abstract|The simplest way to convert a string to an integer in Open C is to use {{Icode|atoi()}}. However, {{Icode|atoi()}} does not differentiate between '0' and invalid input and it does not allow specifying which base you are working with. Other analogous functions to {{Icode|atoi()}} are {{Icode|atof()}} and {{Icode|atol()}}. These functions can be used with the variable types "double" and "long".}} |
| − | Functions | + | Functions {{Icode|strtod()}} and {{Icode|strtol()}} offer more control over the conversion process and they will not produce unexpected results on overflow during conversion. These functions make the position of the first unread character in the input string available by assigning it to the second parameter. The function {{Icode|strtol()}} has also a third parameter to indicate the base of the numeral string. |
| − | '''Note''': In order to use this code, you need to install [http://www. | + | '''Note''': In order to use this code, you need to install [http://www.developer.nokia.com/info/sw.nokia.com/id/91d89929-fb8c-4d66-bea0-227e42df9053/Open_C_SDK_Plug-In.html Open C plug-in]. |
This snippet can be self-signed. | This snippet can be self-signed. | ||
| Line 35: | Line 43: | ||
<code> | <code> | ||
| − | LIBRARY | + | LIBRARY libc.lib |
</code> | </code> | ||
| Line 96: | Line 104: | ||
info | info | ||
--> | --> | ||
| − | |||
| − | |||
Latest revision as of 21:19, 11 August 2012
Contents |
Overview
The simplest way to convert a string to an integer in Open C is to use atoi(). However, atoi() does not differentiate between '0' and invalid input and it does not allow specifying which base you are working with. Other analogous functions to atoi() are atof() and atol(). These functions can be used with the variable types "double" and "long".
Functions strtod() and strtol() offer more control over the conversion process and they will not produce unexpected results on overflow during conversion. These functions make the position of the first unread character in the input string available by assigning it to the second parameter. The function strtol() has also a third parameter to indicate the base of the numeral string.
Note: In order to use this code, you need to install Open C plug-in.
This snippet can be self-signed.
MMP file
The following libraries are required:
LIBRARY libc.lib
Source file
#include <stdlib.h> //atoi, atof(), atol(), strtod(), strtol()
#include <stdio.h> //printf
int main(void)
{
char* int_str = "123"; /* NOTE: atoi will convert e.g. value "xyz" to '0' */
char* double_str = "123.0";
char* long_str = "123456";
int int_result = 0;
double double_result = 0.0;
long long_result = 0;
char* string_to_convert = NULL;
char* rest_of_the_string = NULL;
double double_value = 0.0;
long long_value = 0;
/* functions atoi(), atof() and atol() */
int_result = atoi(int_str);
printf("The string %s as an integer is = %d\n",int_str,int_result);
double_result = atof(double_str);
printf("The string %s as a double is = %f\n",double_str,double_result);
long_result = atol(long_str);
printf("The string %s as a long is = %ld\n",long_str,long_result);
/* functions strtod() and strtol() */
string_to_convert = "123.456RestOfTheString";
double_value = strtod(string_to_convert, &rest_of_the_string);
printf("The string = %s, number = %f, rest = %s\n",
string_to_convert, double_value, rest_of_the_string);
string_to_convert = "123456789NoMoreNumbers";
rest_of_the_string = NULL;
long_value = strtol(string_to_convert, &rest_of_the_string, 10 ); /* use base 10 */
printf("The string = %s, number = %ld, rest = %s\n",
string_to_convert, long_value, rest_of_the_string);
return 0;
}
Postconditions
Five different string-to-number conversions have been executed and are displayed as standard output.

