34

我没有太多使用 C++ 的经验。相反,我在 C# 中工作得更多,因此,我想通过与我将在那里做的事情相关联来问我的问题。我必须生成特定格式的字符串,我必须将其传递给另一个函数。在 C# 中,我可以通过下面的简单代码轻松生成字符串。

string a = "test";
string b = "text.txt";
string c = "text1.txt";

String.Format("{0} {1} > {2}", a, b, c);

通过生成上面这样的字符串,我应该能够将它传递给system(). 不过system只接受char*

我在Win32 C++(不是 C++/CLI)上,并且不能使用,boost因为它会包含太多包含一个项目本身非常小的所有文件。likesprintf()对我来说看起来很有用,但不sprintf接受string,和参数。有什么建议可以在我的程序中生成这些格式化的字符串以传递给系统吗?abc

4

7 回答 7

44

C++ 方法是将std::stringstream对象用作:

std::stringstream fmt;
fmt << a << " " << b << " > " << c;

C 方式是使用sprintf.

C 方式很难正确,因为:

  • 这是类型不安全的
  • 需要缓冲区管理

当然,如果性能是一个问题,您可能希望退回到 C 方式(假设您正在创建固定大小的百万小stringstream对象,然后将它们丢弃)。

于 2012-05-02T08:19:53.263 回答
30

为了完整起见,您可以使用std::stringstream

#include <iostream>
#include <sstream>
#include <string>

int main() {
    std::string a = "a", b = "b", c = "c";
    // apply formatting
    std::stringstream s;
    s << a << " " << b << " > " << c;
    // assign to std::string
    std::string str = s.str();
    std::cout << str << "\n";
}

或者(在这种情况下)std::string自己的字符串连接功能:

#include <iostream>
#include <string>

int main() {
    std::string a = "a", b = "b", c = "c";
    std::string str = a + " " + b + " > " + c;
    std::cout << str << "\n";
}

以供参考:


如果你真的想走C路。给你:

#include <iostream>
#include <string>
#include <vector>
#include <cstdio>

int main() {
    std::string a = "a", b = "b", c = "c";
    const char fmt[] = "%s %s > %s";
    // use std::vector for memory management (to avoid memory leaks)
    std::vector<char>::size_type size = 256;
    std::vector<char> buf;
    do {
        // use snprintf instead of sprintf (to avoid buffer overflows)
        // snprintf returns the required size (without terminating null)
        // if buffer is too small initially: loop should run at most twice
        buf.resize(size+1);
        size = std::snprintf(
                &buf[0], buf.size(),
                fmt, a.c_str(), b.c_str(), c.c_str());
    } while (size+1 > buf.size());
    // assign to std::string
    std::string str(buf.begin(), buf.begin()+size);
    std::cout << str << "\n";
}

以供参考:


然后是Boost 格式库。为了您的示例:

#include <iostream>
#include <string>
#include <boost/format.hpp>

int main() {
    std::string a = "a", b = "b", c = "c";
    // apply format
    boost::format fmt = boost::format("%s %s > %s") % a % b % c; 
    // assign to std::string
    std::string str = fmt.str();
    std::cout << str << "\n";
}
于 2012-05-02T08:26:49.143 回答
18

除了其他人建议的选项外,我还可以推荐fmt 库,它实现了类似于str.formatPython 和String.FormatC# 中的字符串格式。这是一个例子:

std::string a = "test";
std::string b = "text.txt";
std::string c = "text1.txt";
std::string result = fmt::format("{0} {1} > {2}", a, b, c);

免责声明:我是这个库的作者。

于 2012-12-23T00:27:40.033 回答
10

您可以sprintf与 结合使用std::string.c_str()

c_str()返回 aconst char*并使用sprintf

string a = "test";
string b = "text.txt";
string c = "text1.txt";
char* x = new char[a.length() + b.length() + c.length() + 32];

sprintf(x, "%s %s > %s", a.c_str(), b.c_str(), c.c_str() );

string str = x;
delete[] x;

char或者,如果您知道大小,则可以使用预分配的数组:

string a = "test";
string b = "text.txt";
string c = "text1.txt";
char x[256];

sprintf(x, "%s %s > %s", a.c_str(), b.c_str(), c.c_str() );
于 2012-05-02T08:16:35.710 回答
3

为了完整起见,提升方式是使用boost::format

cout << boost::format("%s %s > %s") % a % b % c;

任你选。boost 解决方案具有sprintf格式安全的优点(对于那些发现<<语法有点笨拙的人)。

于 2012-05-02T08:26:44.897 回答
2

如前所述,C++ 方式是使用字符串流。

#include <sstream>

string a = "test";
string b = "text.txt";
string c = "text1.txt";

std::stringstream ostr;
ostr << a << " " << b << " > " << c;

请注意,您可以像这样从字符串流对象中获取 C 字符串。

std::string formatted_string = ostr.str();
const char* c_str = formatted_string.c_str();
于 2012-05-02T08:28:01.907 回答
2

您可以连接字符串并构建命令行。

std::string command = a + ' ' + b + " > " + c;
system(command.c_str());

为此,您不需要任何额外的库。

于 2012-05-02T16:22:12.180 回答