web-dev-qa-db-ja.com

Std :: stringとintを連結する方法

私はこれは本当に簡単だと思いましたが、それはいくつかの困難を提示しています。持っていれば

std::string name = "John";
int age = 21;

それらを組み合わせて単一の文字列"John21"を取得するにはどうすればよいですか。

609
Obediah Stane

アルファベット順:

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);
  1. 安全ですが遅いです。 ブースト (ヘッダーのみ)が必要です。ほとんど/すべてのプラットフォーム
  2. 安全です、C++ 11が必要です( to_string() はすでに#include <string>に含まれています)
  3. 安全で高速です。 FastFormat が必要で、これはコンパイルする必要があります。ほとんど/すべてのプラットフォーム
  4. 安全で高速です。 FastFormat が必要で、これはコンパイルする必要があります。ほとんど/すべてのプラットフォーム
  5. 安全で高速です。 {fmt}ライブラリ が必要です。これは、コンパイルすることも、ヘッダーのみのモードで使用することもできます。ほとんど/すべてのプラットフォーム
  6. 安全で、遅く、そして冗長です。 #include <sstream>が必要です(標準C++から)
  7. 壊れやすく(十分な大きさのバッファーを用意する必要があります)、速く、冗長です。 itoa()は非標準的な拡張であり、すべてのプラットフォームで利用可能であることを保証するものではありません
  8. 壊れやすく(十分な大きさのバッファーを用意する必要があります)、速く、冗長です。何も必要としません(標準C++です)。すべてのプラットフォーム
  9. 壊れやすい(十分な大きさのバッファを用意しなければならない)、 おそらく最速の変換 、冗長。 STLSoftが必要 /(ヘッダーのみ)。ほとんど/すべてのプラットフォーム
  10. 安全です(1つのステートメントで複数の int_to_string() を使用しないでください)。 STLSoftが必要 /(ヘッダーのみ)。 Windowsのみ
  11. 安全ですが遅いです。 Poco C++ ;が必要です。ほとんど/すべてのプラットフォーム
1031
DannyT

C++ 11では、std::to_stringを使うことができます。

auto result = name + std::to_string( age );
247
Jeremy

Boostがあれば、boost::lexical_cast<std::string>(age)を使って整数を文字列に変換することができます。

別の方法は文字列ストリームを使うことです:

std::stringstream ss;
ss << age;
std::cout << name << ss.str() << std::endl;

3番目の方法は、Cライブラリのsprintfまたはsnprintfを使用することです。

char buffer[128];
snprintf(buffer, sizeof(buffer), "%s%d", name.c_str(), age);
std::cout << buffer << std::endl;

他のポスターはitoaの使用を提案しました。これは標準的な関数ではないので、あなたがそれを使用するならばあなたのコードは移植性がないでしょう。それをサポートしていないコンパイラがあります。

81
Jay Conrod
std::ostringstream o;
o << name << age;
std::cout << o.str();
73
Ben Hoffstein
#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 から恥知らずに盗まれた。

50
tloach

これが最も簡単な方法です。

string s = name + std::to_string(age);
28
Kevin

C++ 11をお持ちの場合は、std::to_stringを使用できます。

例:

std::string name = "John";
int age = 21;

name += std::to_string(age);

std::cout << name;

出力:

John21
22
0x499602D2

私には、最も簡単な答えはsprintf関数を使うことです。

sprintf(outString,"%s%d",name,age);
19
user12576
#include <string>
#include <sstream>
using namespace std;
string concatenate(std::string const& name, int i)
{
    stringstream s;
    s << name << i;
    return s.str();
}
15
Seb Rose

Herb Sutterにはこの問題に関する良い記事があります: "The Manor Farmの文字列フォーマッター" 。彼はBoost::lexical_caststd::stringstreamstd::strstream(これは非推奨です)、そしてsprintfsnprintfをカバーしています。

12
Fred Larson
#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;

グーグル [およびテスト済み:p]

11
Zing-

出力演算子を持つものをすべて連結するために+を使用したい場合は、テンプレートバージョンの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

これは最も効率的な方法ではありませんが、ループ内で多くの連結を行っているのでない限り、最も効率的な方法は必要ありません。

7
uckelman

この問題はさまざまな方法で実行できます。 2つの方法でそれを示します。

  1. to_string(i)を使って数値を文字列に変換します。

  2. 文字列ストリームを使用する。

    コード:

    #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;
    }
    
7
lohith99

MFCを使用している場合は、CStringを使用できます。

CString nameAge = "";
nameAge.Format("%s%d", "John", 21);

Managed C++には 文字列フォーマッタ もあります。

5
bsruth

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"
}
4
Pyry Jahkola

Qtに関連した質問がこの質問に賛成して締め切られたので、Qtを使ってそれを行う方法は次のとおりです。

QString string = QString("Some string %1 with an int somewhere").arg(someIntVariable);
string.append(someOtherIntVariable);

文字列変数は、%1の代わりにsomeIntVariableの値を持ち、最後にsomeOtherIntVariableの値を持ちます。

4
leinir

よくある回答: itoa()

これは悪いです。 here が指摘しているように、itoaは非標準です。

3
Tom Ritter

整数(または他の数値オブジェクト)を文字列と連結するために使用できるオプションは他にもあります。それは 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 Karmaは 整数から文字列への変換 _変換の一つであると主張しています。

3
mloskot

下記の単純なトリックを使って、intを文字列に連結することができますが、これはintegerが1桁の場合にのみ機能することに注意してください。それ以外の場合は、その文字列に1桁ずつ整数を追加します。

string name = "John";
int age = 5;
char temp = 5 + '0';
name = name + temp;
cout << name << endl;

Output:  John5
3
Sukhbir

もしあなたがchar *を出して、上記の回答者が概説したもののようにstringstreamを使ったことがあるならば、そうしてください:

myFuncWhichTakesPtrToChar(ss.str().c_str());

文字列ストリームがstr()を介して返すものは標準的な文字列なので、c_str()を呼び出して目的の出力タイプを取得できます。

3
Engineer

これは、IOStreamsライブラリの解析およびフォーマットファセットを使用して、文字列にintを追加する方法の実装です。

#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
}
2
0x499602D2

パラメータとしてint型の数値を取り、文字列リテラルに変換し、私が書いた関数は、あります。この関数は、チャー相当する単一の数字に変換する他の機能に依存しています。

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;
}
2
Reda Lahdili
  • std :: ostringstream
#include <sstream>

std::ostringstream s;
s << "John " << age;
std::string query(s.str());
  • std :: to_string(C++ 11)
std::string query("John " + std::to_string(age));
  • boost :: lexical_cast
#include <boost/lexical_cast.hpp>

std::string query("John " + boost::lexical_cast<std::string>(age));
2

詳細な回答 は他の回答の下に埋め込まれています。

#include <iostream> // cout
#include <string> // string, to_string(some_number_here)

using namespace std;

int main() {
    // using constants
    cout << "John" + std::to_string(21) << endl;
    // output is:
    //    John21

    // using variables
    string name = "John";
    int age = 21;
    cout << name + to_string(age) << endl;
    // output is:
    //    John21
}

{fmt}ライブラリの場合

auto result = fmt::format("{}{}", name, age);

ライブラリのサブセットは、 P0645テキストフォーマット として標準化のために提案されています。そして、受け入れられた場合、上記は以下のようになります。

auto result = std::format("{}{}", name, age);

免責事項 :私は{fmt}ライブラリの作者です。

0
vitaut