std :: stringとintを連結する方法は?


655

これは本当に簡単だと思いましたが、いくつかの困難を伴います。私が持っている場合

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

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


Herb Sutterは、このテーマに関する良い記事「マナーファームの文字列フォーマッター」を公開しています。彼がカバーしBoost::lexical_caststd::stringstreamstd::strstream(非推奨されている)、およびsprintfsnprintf
フレッドラーソン、

これに追加させてください:私は 'str = "hi";を試しました。str + = 5; cout << str; ' 影響は見られませんでした。これにより、operator + =(char)が呼び出され、印刷できない文字が追加されます。
daveagp 2014年

回答:


1126

アルファベット順:

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

13
あなたがgfivenした1つのリンクを除いて、あなたはあなたのパフォーマンスコメントの基礎をなしていますか?
JamieH 2009年

2
それは、単一の回答からのほぼすべての評判です!! 幸運な豆;)8は標準C(もちろんC ++も)だと思いますが、おそらく区別する価値があります。
noelicus

2. std :: to_string(age)が結果に追加される一時的な文字列を作成するため、低速です。
Igor Bukanov

Arduinoを使用してString(number)いる場合は、も使用できます。
マチャド

267

C ++ 11ではstd::to_string、たとえば次のように使用できます。

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

私はこれが好きで、シンプルです。ありがとう。
TruthAdjuster

85

Boostがある場合は、を使用して整数を文字列に変換できますboost::lexical_cast<std::string>(age)

もう1つの方法は、文字列ストリームを使用することです。

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

3番目のアプローチは、Cライブラリを使用するsprintfsnprintf、Cライブラリから取得することです。

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

他のポスターはの使用を提案しましたitoa。これは標準関数ではないため、使用するとコードは移植できなくなります。それをサポートしないコンパイラがあります。


snprintfが文字列をnullで終了することは保証されていないことに注意してください。これが機能することを確認する1つの方法は次のとおりです。<pre> char buffer [128]; buffer [sizeof(buffer)-1] = '\ 0'; snprintf(buffer、sizeof(buffer)-1、 "%s%d"、name.c_str()、age); std :: cout << buffer << std :: endl; </ pre>
Fooz氏、2008年

バッファオーバーフローが発生する可能性があるため、私の傾向はsprintfを使用しないことです。上記の例は、名前が非常に長い場合にsprintfを使用することが安全でない場合の良い例です。
terson、2008年

snprintfも同様に非標準のc ++(言及したitoaのような)であることに注意してください。それはc99から取られたもの
ヨハネスシャウブ-litb

@terson:sprintf答えには、は発生しませんsnprintf
David Foerster 2013


52
#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呼び出し後に無料になりますitossヒープから割り当てるべきでありfree、使用後は正しいですか?
kgbook 2018

1
値による返品は、文字列オブジェクトがスコープ外になったにもかかわらず、okですstackoverflow.com/a/3977119/5393174
kgbook

32

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

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

8
これはC ++ 11以降のソリューションです!
YamHon.CHAN

23

C ++ 11を使用してstd::to_stringいる場合は、を使用できます。

例:

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

name += std::to_string(age);

std::cout << name;

出力:

John21

2
それは次のようになりname += std::to_string(static_cast<long long>(age));、あなたが見ることができるようにVC ++ 2010年にここに
neonmate

@neonmate name += std::to_string(age + 0LL);代わりにどうですか?
chux-モニカを2016年

18

最も簡単な答えはsprintf関数を使用することだと私には思えます:

sprintf(outString,"%s%d",name,age);

1
snprintfはトリッキーになる可能性があります(主に、特定の状況でnull文字を含めることができないため)が、sprintfバッファーが潜在的な問題をオーバーフローしないようにすることをお勧めします。
terson

3
sprintf(char *、const char *、...)は、std :: stringを%sに渡すと、コンパイラの一部のバージョンで失敗します。すべてではありませんが(動作は未定義です)、文字列の長さ(SSO)に依存する場合があります。.c_str()を使用してください
MSalters 2008年

プラスのsprintfそう可能コードインジェクションのバッファオーバーフローの対象となる
ジーン・フランソワ・ファーブル

15
#include <string>
#include <sstream>
using namespace std;
string concatenate(std::string const& name, int i)
{
    stringstream s;
    s << name << i;
    return s.str();
}

11
#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;

Googled [およびテスト済み:p]


10

この問題はさまざまな方法で実行できます。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;
    }

どちらが速いですか?
GyuHyeon Choi

7

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

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


整数または整数とdoubleに追加しようとすると、この関数は呼び出されますか?この解決策が通常の追加を上書きするかどうか疑問に思っています...
Hitor Vitor Lima Pereira 2016

演算子はを返すstd::stringため、文字列を必要な型に変換できない式では候補になりません。例えば、これがoperator+ために使用の対象ではありません+の中で int x = 5 + 7;。すべてを考慮して、非常に説得力のある理由なしにこのような演算子を定義することはありませんが、私の目的は、他とは異なる答えを提供することでした。
uckelman

あなたは正しいです(私はそれをテストしました...)。そして、文字列s = 5 + 7のようなことをやろうとすると、「int」から「const char」* への無効な変換エラーが発生しました
Hilder Vitor Lima Pereira


4

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

Qtに関連する質問がクローズされたため、Qtを使用してそれを行う方法は次のとおりです。

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

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


QString( "Something")+ QString :: number(someIntVariable)も機能します
gremwell

3

整数(または他の数値オブジェクト)を文字列と連結するために使用できるオプションは他にもあります。それは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)のKarma

#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は、整数から文字列への変換の最高速オプションの 1つであると主張しています。



3

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

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

Output:  John5

2

以下は、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
  • 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));

どちらが最速ですか?
GyuHyeon Choi

2

私が書いた関数があり、これはint番号をパラメーターとして取り、それを文字列リテラルに変換します。この関数は、1桁を対応する文字に変換する別の関数に依存しています。

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

1

{FMT}ライブラリ

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

ライブラリのサブセットは、標準化のためにP0645 Text Formattingとして提案されており、受け入れられた場合、上記は次のようになります。

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

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


0

ワンライナーとして: name += std::to_string(age);


3
これは0x499602D2の回答と同じコードです。
BDL
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.