Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Variable in String ?

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
08.05.2006, 20:12 Uhr
~lawguest
Gast


Hi, gibt es eine Möglichkeit in einem String Variablen einzubinden zb in der form.

int Jahre = 2;
std::string blub = "Hans ist 'nJahre' alte.";
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
08.05.2006, 20:54 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft...
(Operator)


Variablen selbst nicht aber deren Inhalt. Kannst mit dem + Operator strings zusammenbasteln...
--
...fleißig wie zwei Weißbrote
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
08.05.2006, 21:05 Uhr
~lawguest
Gast


zb so


int Jahre = 2;
std::string blub = "Hans ist " + Jahre + "alt";
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
09.05.2006, 00:19 Uhr
virtual
Sexiest Bit alive
(Operator)


Nein. So:

C++:
std::stringstream ss;
ss<<"Hans ist "<<jahre<<" alt";
std::string blub = ss.str();


--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: