473,326 Members | 2,110 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

string to int

Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321

Dec 10 '05 #1
8 11105
"shan" <sr**********@gmail.com> writes:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321

int i = atoi("321");

--
Chris.
Dec 10 '05 #2
Chris McDonald wrote:
"shan" <sr**********@gmail.com> writes:

Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321


int i = atoi("321");


strtol() would be better, atoi() has poor error handling
--
Nick Keighley

Dec 10 '05 #3
Chris McDonald wrote:

"shan" <sr**********@gmail.com> writes:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321

#include <stdlib.h>
int i = atoi("321");


--
pete
Dec 10 '05 #4

shan wrote:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321


#include <stdlib.h>
#include <ctype.h>
....
char *chk;
int val = (int) strtol("321", &chk, 10);
if (!isspace((int) *chk) && *chk != 0)
{
/* input string contains invalid character */
}

Dec 10 '05 #5
John Bode wrote:
shan wrote:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321


#include <stdlib.h>
#include <ctype.h>
...
char *chk;
int val = (int) strtol("321", &chk, 10);


The cast produces implementation-defined behavior if the return value
of strtol exceeds the representable range of int. Jack Klein has
written a very robust example of how to do this correctly at
http://home.att.net/~jackklein/c/code/strtol.html.

Robert Gamble

Dec 10 '05 #6
shan wrote:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321


atoi(), or strtod(), or even sscanf().
Dec 11 '05 #7
Stan Milam wrote:
shan wrote:
Hi to all,
Is there any way to convert string to integer.string will
contain only integers.I am using turbo c++
example :
"321" to 321


atoi(), or strtod(), or even sscanf().


That would be strtol(), surely.
--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Dec 12 '05 #8
"shan" <sr**********@gmail.com> wrote:
# Hi to all,
# Is there any way to convert string to integer.string will
# contain only integers.I am using turbo c++
# example :
# "321" to 321

strtol and related routines, or sscanf.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
The little stoner's got a point.
Dec 12 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Krakatioison | last post by:
My sites navigation is like this: http://www.newsbackup.com/index.php?n=000000000040900000 , depending on the variable "n" (which is always a number), it will take me anywhere on the site......
5
by: Stu Cazzo | last post by:
I have the following: String myStringArray; String myString = "98 99 100"; I want to split up myString and put it into myStringArray. If I use this: myStringArray = myString.split(" "); it...
9
by: John F Dutcher | last post by:
I use code like the following to retrieve fields from a form: recd = recd.append(string.ljust(form.getfirst("lname",' '),15)) recd.append(string.ljust(form.getfirst("fname",' '),15)) etc.,...
9
by: Derek Hart | last post by:
I wish to execute code from a string. The string will have a function name, which will return a string: Dim a as string a = "MyFunctionName(param1, param2)" I have seen a ton of people...
10
by: Angus Leeming | last post by:
Hello, Could someone explain to me why the Standard conveners chose to typedef std::string rather than derive it from std::basic_string<char, ...>? The result of course is that it is...
2
by: Andrew | last post by:
I have written two classes : a String Class based on the book " C++ in 21 days " and a GenericIpClass listed below : file GenericStringClass.h // Generic String class
4
by: Locusta | last post by:
Hello, I have been struggeling for replacing a string in a string. The snippet from the program below replaces the <, & and > with the XML equivalent values. In the program, I allocate space...
29
by: zoro | last post by:
Hi, I am new to C#, coming from Delphi. In Delphi, I am using a 3rd party string handling library that includes some very useful string functions, in particular I'm interested in BEFORE (return...
4
by: Emilio | last post by:
Question about Shared Sub Connect(server As , message As ) Why is in square brackets? Is it like Shared Sub Connect(server() As String, message() As String)
2
by: Badass Scotsman | last post by:
Hello, Using VB and ASP,NET I would like to be able to search a STRING for a smaller STRING within, based on the characters which appear before and after. For example: String1 = " That was...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.