如何在 C++ 中把字符串转换为 Char 数组

Jinku Hu 2023年1月30日 2020年9月26日
  1. 使用 std::basic_string::c_str 方法将字符串转换为 char 数组
  2. 使用 std::vector 容器将字符串转换为 Char 数组
  3. 使用指针操作操作将字符串转换为字符数组
如何在 C++ 中把字符串转换为 Char 数组

本文介绍了将字符串数据转换为 char 数组的多种方法。

使用 std::basic_string::c_str 方法将字符串转换为 char 数组

这个版本是解决上述问题的 C++ 方法。它使用了 string 类内置的方法 c_str,该方法返回一个指向以 null 终止的 char 数组的指针。

#include <iostream>
#include <string>

using std::cout;
using std::cin;
using std::endl
using std::string;

int main(){
    string tmp_string = "This will be converted to char*";
    auto c_string = tmp_string.c_str();

    cout << c_string <<  endl;
    return EXIT_SUCCESS;
}

输出:

This will be converted to char*

如果你打算修改存储在 c_str() 方法返回的指针处的数据,首先,你必须用 memmove 函数把这个范围复制到不同的位置,然后对 char 字符串进行如下操作。

#include <iostream>
#include <string>
#include <cstring>

using std::cout;
using std::cin;
using std::endl
using std::string;

int main(){
    string tmp_string = "This will be converted to char*";

    char *c_string_copy = new char[tmp_string.length() + 1];
    memmove(c_string_copy, tmp_string.c_str(), tmp_string.length());

    /* do operations on c_string_copy here */

    cout << c_string_copy;
    delete [] c_string_copy;
    return EXIT_SUCCESS;
}

注意,你可以使用各种函数复制 c_string 数据,例如:[memcpy]。memcpy, memccpy, mempcpy, strcpystrncpy, 但请记住阅读手册页面并仔细考虑其边缘情况/错误。

使用 std::vector 容器将字符串转换为 Char 数组

另一种方法是将字符串中的字符存储到 vector 容器中,然后使用其强大的内置方法安全地操作数据。

#include <iostream>
#include <string>
#include <vector>
#include <iterator>

using std::cout;
using std::cin;
using std::endl;
using std::string;
using std::vector;

int main(){
    string tmp_string = "This will be converted to char*\n";

    vector<char> vec_str(tmp_string.begin(), tmp_string.end());
    std::copy(vec_str.begin(), vec_str.end(), std::ostream_iterator<char>(cout, ""));

    return EXIT_SUCCESS;
}

使用指针操作操作将字符串转换为字符数组

在这个版本中,我们定义了一个名为 tmp_ptrchar 指针,并将 tmp_string 中第一个字符的地址分配给它。

#include <iostream>
#include <string>

using std::cout;
using std::cin;
using std::endl
using std::string;

int main(){
    string tmp_string = "This will be converted to char*\n";
    string mod_string = "I've been overwritten";

    char *tmp_ptr = &tmp_string[0];
    cout << tmp_ptr;

    return EXIT_SUCCESS;
}

但请记住,修改 tmp_ptr 中的数据也会改变 tmp_string 的值,你可以参考下面的代码示例。

#include <iostream>
#include <string>
#include <cstring>

using std::cout;
using std::cin;
using std::endl
using std::string;

int main(){
    string tmp_string = "This will be converted to char*\n";
    string mod_string = "I've been overwritten";

    char *tmp_ptr = &tmp_string[0];
    memmove(tmp_ptr, mod_string.c_str(), mod_string.length());

    cout << tmp_string;
    return EXIT_SUCCESS;
}
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相关文章 - C++ String

相关文章 - C++ Char