मैंने सोचा कि यह वास्तव में सरल होगा लेकिन यह कुछ कठिनाइयों को प्रस्तुत कर रहा है। अगर मेरे पास
std::string name = "John";
int age = 21;
एकल स्ट्रिंग प्राप्त करने के लिए मैं उन्हें कैसे संयोजित करूं "John21"
?
मैंने सोचा कि यह वास्तव में सरल होगा लेकिन यह कुछ कठिनाइयों को प्रस्तुत कर रहा है। अगर मेरे पास
std::string name = "John";
int age = 21;
एकल स्ट्रिंग प्राप्त करने के लिए मैं उन्हें कैसे संयोजित करूं "John21"
?
जवाबों:
वर्णमाला क्रम में:
std::string name = "John";
int age = 21;
std::string result;
// 1. with Boost
result = name + boost::lexical_cast<std::string>(age);
// 2. with C++11
result = name + std::to_string(age);
// 3. with FastFormat.Format
fastformat::fmt(result, "{0}{1}", name, age);
// 4. with FastFormat.Write
fastformat::write(result, name, age);
// 5. with the {fmt} library
result = fmt::format("{}{}", name, age);
// 6. with IOStreams
std::stringstream sstm;
sstm << name << age;
result = sstm.str();
// 7. with itoa
char numstr[21]; // enough to hold all numbers up to 64-bits
result = name + itoa(age, numstr, 10);
// 8. with sprintf
char numstr[21]; // enough to hold all numbers up to 64-bits
sprintf(numstr, "%d", age);
result = name + numstr;
// 9. with STLSoft's integer_to_string
char numstr[21]; // enough to hold all numbers up to 64-bits
result = name + stlsoft::integer_to_string(numstr, 21, age);
// 10. with STLSoft's winstl::int_to_string()
result = name + winstl::int_to_string(age);
// 11. With Poco NumberFormatter
result = name + Poco::NumberFormatter().format(age);
#include <string>
)#include <sstream>
(मानक C ++ से)String(number)
।
C ++ 11 में, आप उपयोग कर सकते हैं std::to_string
, जैसे:
auto result = name + std::to_string( age );
यदि आपके पास बूस्ट है, तो आप पूर्णांक को स्ट्रिंग का उपयोग करके परिवर्तित कर सकते हैं boost::lexical_cast<std::string>(age)
।
एक और तरीका स्ट्रिंगस्ट्रीम का उपयोग करना है:
std::stringstream ss;
ss << age;
std::cout << name << ss.str() << std::endl;
एक तीसरा दृष्टिकोण सी लाइब्रेरी का उपयोग sprintf
या उससे होगा snprintf
।
char buffer[128];
snprintf(buffer, sizeof(buffer), "%s%d", name.c_str(), age);
std::cout << buffer << std::endl;
अन्य पोस्टरों का उपयोग करने का सुझाव दिया itoa
। यह एक मानक कार्य नहीं है, इसलिए यदि आप इसका उपयोग करते हैं तो आपका कोड पोर्टेबल नहीं होगा। ऐसे कंपाइलर हैं जो इसका समर्थन नहीं करते हैं।
sprintf
जवाब में कोई घटना नहीं दिखती है , केवल snprintf
।
#include <iostream>
#include <sstream>
std::ostringstream o;
o << name << age;
std::cout << o.str();
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
string itos(int i) // convert int to string
{
stringstream s;
s << i;
return s.str();
}
Http://www.research.att.com/~bs/bs_faq2.html से बेशर्मी से चोरी ।
s
एक स्टैक वैरिएबल है, इनवॉइस की मेमोरी s
फ्री हो जाएगी itos
। s
ढेर से आवंटित करना चाहिए, और free
उपयोग करने के बाद, है ना?
यदि आपके पास C ++ 11 है, तो आप उपयोग कर सकते हैं std::to_string
।
उदाहरण:
std::string name = "John";
int age = 21;
name += std::to_string(age);
std::cout << name;
आउटपुट:
John21
name += std::to_string(age + 0LL);
इसके बजाय कैसे ?
यह मुझे लगता है कि सबसे सरल उत्तर sprintf
फ़ंक्शन का उपयोग करना है:
sprintf(outString,"%s%d",name,age);
#include <sstream>
template <class T>
inline std::string to_string (const T& t)
{
std::stringstream ss;
ss << t;
return ss.str();
}
तब आपका उपयोग कुछ इस तरह दिखेगा
std::string szName = "John";
int numAge = 23;
szName += to_string<int>(numAge);
cout << szName << endl;
गुगली [और परीक्षण: पी]
इस समस्या को कई तरीकों से किया जा सकता है। मैं इसे दो तरह से दिखाऊंगा:
संख्या का उपयोग करके स्ट्रिंग में कनवर्ट करें to_string(i)
।
स्ट्रिंग स्ट्रीम का उपयोग करना।
कोड:
#include <string>
#include <sstream>
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
int main() {
string name = "John";
int age = 21;
string answer1 = "";
// Method 1). string s1 = to_string(age).
string s1=to_string(age); // Know the integer get converted into string
// where as we know that concatenation can easily be done using '+' in C++
answer1 = name + s1;
cout << answer1 << endl;
// Method 2). Using string streams
ostringstream s2;
s2 << age;
string s3 = s2.str(); // The str() function will convert a number into a string
string answer2 = ""; // For concatenation of strings.
answer2 = name + s3;
cout << answer2 << endl;
return 0;
}
यदि आप +
किसी ऐसी चीज़ के लिए उपयोग करना चाहते हैं जिसका आउटपुट ऑपरेटर है, तो आप इसका एक टेम्प्लेट संस्करण प्रदान कर सकते हैं operator+
:
template <typename L, typename R> std::string operator+(L left, R right) {
std::ostringstream os;
os << left << right;
return os.str();
}
फिर आप अपने निष्कर्षों को सीधे तरीके से लिख सकते हैं:
std::string foo("the answer is ");
int i = 42;
std::string bar(foo + i);
std::cout << bar << std::endl;
आउटपुट:
the answer is 42
यह सबसे कुशल तरीका नहीं है, लेकिन आपको सबसे कुशल तरीके की आवश्यकता नहीं है जब तक कि आप एक लूप के अंदर बहुत अधिक मात्रा में नहीं कर रहे हैं।
std::string
, इसलिए उन अभिव्यक्तियों में उम्मीदवार नहीं होगा जहां एक स्ट्रिंग आवश्यक प्रकार में परिवर्तनीय नहीं है। उदाहरण के लिए, यह operator+
उपयोग करने के लिए योग्य नहीं +
है int x = 5 + 7;
। सभी बातों पर विचार किया, मैं बहुत ही सम्मोहक कारण के बिना इस तरह के एक ऑपरेटर को परिभाषित नहीं करेगा , लेकिन मेरा उद्देश्य दूसरों से अलग उत्तर की पेशकश करना था।
यदि आप MFC का उपयोग कर रहे हैं, तो आप एक CString का उपयोग कर सकते हैं
CString nameAge = "";
nameAge.Format("%s%d", "John", 21);
प्रबंधित C ++ में एक स्ट्रिंग फ़ॉर्मेटर भी है ।
Std :: ostringstream एक अच्छा तरीका है, लेकिन कभी-कभी इस अतिरिक्त ट्रिक से फॉर्मेटिंग को वन-लाइनर में बदलना आसान हो सकता है:
#include <sstream>
#define MAKE_STRING(tokens) /****************/ \
static_cast<std::ostringstream&>( \
std::ostringstream().flush() << tokens \
).str() \
/**/
अब आप तार को इस तरह से प्रारूपित कर सकते हैं:
int main() {
int i = 123;
std::string message = MAKE_STRING("i = " << i);
std::cout << message << std::endl; // prints: "i = 123"
}
क्यूटी से संबंधित प्रश्न को इस के पक्ष में बंद कर दिया गया था, यहां Qt का उपयोग करके इसे कैसे करें:
QString string = QString("Some string %1 with an int somewhere").arg(someIntVariable);
string.append(someOtherIntVariable);
स्ट्रिंग वैरिएबल में% 1 के स्थान पर कुछIVVViable का मूल्य और अंत में कुछOtherIntVariable का मान है।
स्ट्रिंग के साथ पूर्णांक (या अन्य संख्यात्मक वस्तु) का उपयोग करने के लिए अधिक विकल्प संभव हैं। यह Boost.Format है
#include <boost/format.hpp>
#include <string>
int main()
{
using boost::format;
int age = 22;
std::string str_age = str(format("age is %1%") % age);
}
और Boost.Spirit (v2) से कर्म
#include <boost/spirit/include/karma.hpp>
#include <iterator>
#include <string>
int main()
{
using namespace boost::spirit;
int age = 22;
std::string str_age("age is ");
std::back_insert_iterator<std::string> sink(str_age);
karma::generate(sink, int_, age);
return 0;
}
Boost.Spirit कर्म स्ट्रिंग रूपांतरण के लिए पूर्णांक के लिए सबसे तेज विकल्प में से एक होने का दावा करता है ।
आप नीचे दिए गए सरल ट्रिक का उपयोग करके स्ट्रिंग को intatenate कर सकते हैं, लेकिन ध्यान दें कि यह तभी काम करता है जब पूर्णांक एकल अंक का हो। अन्यथा, उस स्ट्रिंग को अंक द्वारा पूर्णांक अंक जोड़ें।
string name = "John";
int age = 5;
char temp = 5 + '0';
name = name + temp;
cout << name << endl;
Output: John5
यहाँ IOStreams पुस्तकालय से पार्सिंग और स्वरूपण पहलुओं का उपयोग करके एक स्ट्रिंग को एक इंटेंड कैसे जोड़ा जाए, इसका कार्यान्वयन है।
#include <iostream>
#include <locale>
#include <string>
template <class Facet>
struct erasable_facet : Facet
{
erasable_facet() : Facet(1) { }
~erasable_facet() { }
};
void append_int(std::string& s, int n)
{
erasable_facet<std::num_put<char,
std::back_insert_iterator<std::string>>> facet;
std::ios str(nullptr);
facet.put(std::back_inserter(s), str,
str.fill(), static_cast<unsigned long>(n));
}
int main()
{
std::string str = "ID: ";
int id = 123;
append_int(str, id);
std::cout << str; // ID: 123
}
#include <sstream> std::ostringstream s; s << "John " << age; std::string query(s.str());
std::string query("John " + std::to_string(age));
#include <boost/lexical_cast.hpp> std::string query("John " + boost::lexical_cast<std::string>(age));
एक फ़ंक्शन है जो मैंने लिखा था, जो इंटिमेट नंबर को पैरामीटर के रूप में लेता है, और इसे एक स्ट्रिंग शाब्दिक में परिवर्तित करता है। यह फ़ंक्शन किसी अन्य फ़ंक्शन पर निर्भर है जो किसी एकल अंक को उसके चार समतुल्य में परिवर्तित करता है:
char intToChar(int num)
{
if (num < 10 && num >= 0)
{
return num + 48;
//48 is the number that we add to an integer number to have its character equivalent (see the unsigned ASCII table)
}
else
{
return '*';
}
}
string intToString(int num)
{
int digits = 0, process, single;
string numString;
process = num;
// The following process the number of digits in num
while (process != 0)
{
single = process % 10; // 'single' now holds the rightmost portion of the int
process = (process - single)/10;
// Take out the rightmost number of the int (it's a zero in this portion of the int), then divide it by 10
// The above combination eliminates the rightmost portion of the int
digits ++;
}
process = num;
// Fill the numString with '*' times digits
for (int i = 0; i < digits; i++)
{
numString += '*';
}
for (int i = digits-1; i >= 0; i--)
{
single = process % 10;
numString[i] = intToChar ( single);
process = (process - single) / 10;
}
return numString;
}
साथ {} fmt पुस्तकालय :
auto result = fmt::format("{}{}", name, age);
पुस्तकालय का एक सबसेट P0645 पाठ प्रारूपण के रूप में मानकीकरण के लिए प्रस्तावित है और, यदि स्वीकार किया जाता है, तो उपरोक्त बन जाएगा:
auto result = std::format("{}{}", name, age);
अस्वीकरण : मैं {fmt} पुस्तकालय का लेखक हूं।
Boost::lexical_cast
,std::stringstream
,std::strstream
(जो अब मान्य नहीं है), औरsprintf
बनामsnprintf
।