473,769 Members | 1,632 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to convert a string iterator to a char*

Hi!

I have a string passed to a methos via a string&. I would like to convert this to an unsigned long.

How do I convert the string iterator to a char*?

with all the error checking code removed, it's basically this:

Expand|Select|Wrap|Line Numbers
  1. MyFunction(string &s)
  2. {
  3.     string::iterator it = s.begin();
  4.     // Sometimes the string is iterated a few characters here
  5.     DWORD value = strtoul(it, NULL, 16);
  6.     // Post processing data
  7. }
  8.  
When I try to execute this code I get this error message.

error: cannot convert '__gnu_cxx::__n ormal_iterator< char*, std::basic_stri ng<char, std::char_trait s<char>, std::allocator< char> > >' to 'const char*' for argument '1' to 'long unsigned int strtoul(const char*, char**, int)'|
Oct 4 '10 #1
2 7729
Oralloy
988 Recognized Expert Contributor
try
Expand|Select|Wrap|Line Numbers
  1. MyFunction(string &s) 
  2.     string::iterator it = s.begin(); 
  3.     // Sometimes the string is iterated a few characters here 
  4.     DWORD value = strtoul(s.c_str(), NULL, 16); 
  5.     // Post processing data 
Oct 4 '10 #2
Oralloy
988 Recognized Expert Contributor
Just as an aside, why aren't you wrapping a stream around the string and just extracting values that way?
Oct 4 '10 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

2
38660
by: Marius Cabas | last post by:
How can I convert a String or a char to byte?
4
11293
by: Kueishiong Tu | last post by:
How do I convert a managed String type to a native char type? If nothing is availbale, how do I copy the the contents of the String object to a char array?
5
4339
by: sarab | last post by:
Hi, I have a managed C++ app in which i need to convert String * to char *. How can i achive this?. regards -sarab
6
109364
by: Rick | last post by:
Hi guys, i've seen it in VC++ but in C# how do i conver string to char?? in c++ is like http://support.microsoft.com/?kbid=311259 Regards
7
3250
by: nicolas.hilaire | last post by:
hi all, i'm using this code to convert a String ^ in char * String ^str = "string .net"; IntPtr p = System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi(str); LPCSTR str2 = reinterpret_cast<LPCSTR>(static_cast<void *>(p)); System::Runtime::InteropServices::Marshal::FreeHGlobal(p);
5
3106
by: 9966 | last post by:
Hi, currently I'm having a problem on converting a string type array into a char type. An example is as follows: string fruits; vector <char> temp; The fruits array HAS to be a string type and temp vector HAS to be a char type. This can't be changed. So I've a problem on storing the element of fruits array into temp vector as follows: temp.push_back(fruits); <-----I know this is wrong. So can I know how to convert string array into...
4
17375
by: Man4ish | last post by:
HI , I am trying to convert string into char array of characters.but facing problem. #include <iostream> #include <string> using namespace std; int main() { string t="1,2,3,4,5,6";
3
59493
by: Brandon | last post by:
How do I convert a string to a char array? I am doing this so I can edit the string received from an sql query so I can remove unnecessary characters.
6
3679
by: mbh1 | last post by:
i need to send a string from a text box to a certain function that receives char* type how can i do the convertion? thanks
5
3860
by: yeshello54 | last post by:
Hey all. I have a small problem. I have a string called hexed. inside hexed for example is the string "003eb". I need to be able to convert this string into a char* because i have a predefined function that converts hexadecimal to decimal but its parameter that needs to be passed to it is a char *. I have been looking into a few things and Im just a little confused on how to implement it.
0
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10211
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10045
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9994
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9863
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8870
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7408
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.