473,756 Members | 3,051 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

convert char * to string object

23 New Member
Hi please some one can help me. how to convert char * to string?

i have take char *argv[] from command line and want to pass to a function as string object(string str)
i want to first convert argv[1] to string object of type str, then pass to function().
please help me how to convert this
Nov 7 '08 #1
3 19869
arnaudk
424 Contributor
A C string is a null-terminated character array. Thus, to convert your character array to a C string, simply append a null "\0" to the end of it. Note however that if your character array is in argv[1], then it will already be null-terminated because argv from main() is always an array of strings. If you want to use a C++ string, then simply declare one one passing the aforementioned C string to the constructor:
Expand|Select|Wrap|Line Numbers
  1. #include <string>
  2. int main(int argc, char * argv[])
  3. {
  4. std::string str(argv[1]); // str: C++ string containing the characters of argv[1]
  5. ...
  6.  
Nov 7 '08 #2
mamul
23 New Member
A C string is a null-terminated character array. Thus, to convert your character array to a C string, simply append a null "\0" to the end of it. Note however that if your character array is in argv[1], then it will already be null-terminated because argv from main() is always an array of strings. If you want to use a C++ string, then simply declare one one passing the aforementioned C string to the constructor:
Expand|Select|Wrap|Line Numbers
  1. #include <string>
  2. int main(int argc, char * argv[])
  3. {
  4. std::string str(argv[1]); // str: C++ string containing the characters of argv[1]
  5. ...
  6.  
Thanks A lot.
can u tell me why the value of result is 3 at the time of debuging.
please see the below code for renameing afile i want to use rename() of stdio.h
const char *oldname=argv[1];
const char *newname="input .docx";
int result=rename(o ldname,newname) ;
cout<<"result "<<result;
rename() return -1 ? not renamed please tell me why? there is no compiler error, but its not renaming
Nov 7 '08 #3
arnaudk
424 Contributor
Just to check things are working as you expect, why not print out oldname to the terminal? Also, are you sure the file exists in the current path? note that if you use back slashes "\" they will need to be escaped: "\\".
Nov 7 '08 #4

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

Similar topics

3
11580
by: Francesco | last post by:
Ciao, I'm new in c++ programming and I've experimented some method to convert real number into c++ string object, at present I've found as best solution use the C command "sprintf": //------------------------------------------------------ #include <iostream> #include <stdlib.h> #include <string> using namespace std;
3
6037
by: Tim Mulholland | last post by:
How can i (using Managed C++) convert a System::String object containing basic text into a char* object? Thanks in advance, Tim
7
66731
by: MilanB | last post by:
Hello How to convert char to int? Thanks
15
10833
by: Yifan | last post by:
Hi Does anybody know how to convert System::String* to char*? I searched the System::String class members and did not find any. Thanks Yifan
5
2924
by: Alan Silver | last post by:
Hello, <dumb question> I am trying to do something similar to the following... string str = "Hello"; char c = (char)str.Substring(2,1); but the compiler complains that it cannot convert a string to a char.
7
2564
by: brian_harris | last post by:
I have a string object that I need to convert into an unmanged char * to be used by several unmnaged 3rd party functions. I have tried to use: (Marshal::StringToHGlobalAuto (Profname)) This would get me an IntPtr value, but I could not find the correct way to cast an IntPtr to an unmanged char *. One example I tried was: char *inifile; inifile = static_cast <char*> (Marshal::StringToHGlobalAuto (Profname)); It gave following compile...
2
94059
by: Joah Senegal | last post by:
Hello I need to convert a chat to a string... but I don't know how to do this. i;ve searched the internet but I've only find some code to convert char * to string or char to string.... but I just need char to string. Anyone knows how to do this ? thanks!!!!
3
5355
by: simon | last post by:
I am a fresh Visual C++ .NET Developer. Can you kindly guide me for How to Convert char to System::String I am using windows forms and trying to set a text value referencing the method className() of an object of class HetConvert (my own) this returns a char - which as you can see from the code below I am trying to pass to label1->Text - but this expects a String^ any clues anyone
2
7728
by: AndreasL | last post by:
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: MyFunction(string &s)
0
9273
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9711
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
8712
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...
0
6534
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
5141
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5303
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3805
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3358
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2666
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.