473,406 Members | 2,745 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,406 software developers and data experts.

Please Help! Strings are confusing!

It's been many years since i've programmed in c. I am trying to do
somethign so simple, but it seems impossible. There has to be an
easier way than what I am doing.

What I want to do is build a string with user variables placed within
it... for example :

name = "Ryan";
age = "28";

mystring = "Hello, my name is " + name + " and I am " + age + " years
old";
(I know that won't compile, but I'm trying to find a way to do
something like that)

So when this is run, the variable mystring would contain :

"Hello, my name is Ryan and I am 28 years old"

How do I do this?

This is how I am doing it so far and there has to be a better way :

strcpy(mystring,"Hello, my name is ");
strcat(mystring,name);
strcat(mystring,"and I am ");
strcat(mystring,age);
strcat(mystring,"years old);

Thanx a bunch for the help!!

Ryan Ritten

Dec 2 '05 #1
6 1174
Hi

Sparticus wrote:
What I want to do is build a string with user variables placed within
it... [...] How do I do this?

This is how I am doing it so far and there has to be a better way :

[Approach with lots of strcats]

Yes, there is indeed a better way: Use sprintf!
It works just like printf, but prints to a string...

Markus

Dec 2 '05 #2
Sparticus wrote:

It's been many years since i've programmed in c. I am trying to do
somethign so simple, but it seems impossible. There has to be an
easier way than what I am doing.

What I want to do is build a string with user variables placed within
it... for example :

name = "Ryan";
age = "28";

mystring = "Hello, my name is " + name + " and I am " + age + " years
old";
(I know that won't compile, but I'm trying to find a way to do
something like that)

So when this is run, the variable mystring would contain :

"Hello, my name is Ryan and I am 28 years old"

How do I do this?

This is how I am doing it so far and there has to be a better way :

strcpy(mystring,"Hello, my name is ");
strcat(mystring,name);
strcat(mystring,"and I am ");
strcat(mystring,age);
strcat(mystring,"years old);

Thanx a bunch for the help!!


/* BEGIN new.c */

#include <stdio.h>

int main(void)
{
char name[] = "Ryan";
char age[] = "28";
char mystring
[sizeof"Hello, my name is Ryan and I am 28 years old"];

sprintf(mystring,
"Hello, my name is %s and I am %s years old", name, age);
puts(mystring);
return 0;
}

/* END new.c */
--
pete
Dec 2 '05 #3

Sparticus wrote:
It's been many years since i've programmed in c. I am trying to do
somethign so simple, but it seems impossible. There has to be an
easier way than what I am doing.

What I want to do is build a string with user variables placed within
it... for example :

name = "Ryan";
age = "28";

mystring = "Hello, my name is " + name + " and I am " + age + " years
old";
(I know that won't compile, but I'm trying to find a way to do
something like that)

So when this is run, the variable mystring would contain :

"Hello, my name is Ryan and I am 28 years old"

How do I do this?

This is how I am doing it so far and there has to be a better way :

strcpy(mystring,"Hello, my name is ");
strcat(mystring,name);
strcat(mystring,"and I am ");
strcat(mystring,age);
strcat(mystring,"years old);

Thanx a bunch for the help!!

Ryan Ritten


That's as good a way as any, so long as mystring is a big enough buffer
to hold the final result. Another option would be sprintf:

sprintf(mystring,"Hello, my name is %s and I am %s years old", name,
age) ;

Dec 2 '05 #4
thanx guys. that's exactly what I was looking for :)

Dec 2 '05 #5
Berryo <st**********@polyglobe-group.com> wrote:
That's as good a way as any, so long as mystring is a big enough buffer
to hold the final result. Another option would be sprintf:


OP may find the C99 function snprintf() useful as well. It's
fairly widely available even on implementations that do not conform to
C99.

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Dec 2 '05 #6
Christopher Benson-Manica wrote:
Berryo <st**********@polyglobe-group.com> wrote:

That's as good a way as any, so long as mystring is a big enough buffer
to hold the final result. Another option would be sprintf:

OP may find the C99 function snprintf() useful as well. It's
fairly widely available even on implementations that do not conform to
C99.


Unfortunately, on the implementations that do not conform to C99, the
snprintf function has quite different behaviour. Don't rely on the C99
specification and expect it to work that way everywhere. It is possible
to code around these old implementations, but it's tricky.

--
Simon.
Dec 7 '05 #7

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

Similar topics

5
by: duikboot | last post by:
Hi all, I'm trying to export a view tables from a Oracle database to a Mysql database. I create insert statements (they look alright), but it all goes wrong when I try to execute them in Mysql,...
0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
by: Joner | last post by:
Hello, I'm having trouble with a little programme of mine where I connect to an access database. It seems to connect fine, and disconnect fine, but then after it won't reconnect, I get the error...
13
by: sd00 | last post by:
Hi all, can someone give me some coding help with a problem that *should* be really simple, yet I'm struggling with. I need the difference between 2 times (Target / Actual) However, these times...
1
PEB
by: PEB | last post by:
POSTING GUIDELINES Please follow these guidelines when posting questions Post your question in a relevant forum Do NOT PM questions to individual experts - This is not fair on them and...
0
by: 2Barter.net | last post by:
newsmail@reuters.uk.ed10.net Fwd: Money for New Orleans, AL & GA Inbox Reply Reply to all Forward Print Add 2Barter.net to Contacts list Delete this message Report phishing Show original
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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...
0
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,...
0
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...
0
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,...
0
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...

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.