请教如何将字符数组转化成string类型

时间:2021-04-09 14:51:39
不知道怎么将字符数组转化成string类型,顺便请教将string类型转换为字符数组有哪些方法 
谢谢!

17 个解决方案

#1


看看string 的实现,就清楚了

#2


直接用string 的copy constructor

        char a[]="shinesun";
string A(a);

cout<<A;

#3


直接copy过去 会自动转换的

#4


copy根本不行啊,只能将string转换成数组

#5


引用 2 楼 hgxinyu 的回复:
直接用string 的copy constructor

        char a[]="shinesun";
string A(a);

cout<<A;


string str;
char [12] = "string";

str = char;

#6


字符数组转化成string类型
char ch [] = "ABCDEFG";
string str(ch);//也可string str = ch;
或者
char ch [] = "ABCDEFG";
string str;
str = ch;//在原有基础上添加可以用str += ch;

将string类型转换为字符数组
char buf[10];
string str("ABCDEFG");
length = str.copy(buf, 9);
buf[length] = '\0';
或者
char buf[10];
string str("ABCDEFG");
strcpy(buf, str.c_str());//strncpy(buf, str.c_str(), 10);

#7


string的 data函数专门用来返回字符数组

#8


string可以直接用char*初始化
char* a = "Hello World";
string s(a);(

字符数组转string可以用c_str()函数
s.c_str();

#9


晕,是string转字符数组

#10


直接用字符数组初始化string

#11



char CharArry[MAX_PATH] = "我爱你";
string strDest;
memcpy(&strDest,CharArry); //这里CharArry 代表数组头地址,等同于&CharArry[0]

#12


引用 11 楼 cqj008 的回复:
C/C++ code

char CharArry[MAX_PATH] = "我爱你";
string strDest;
memcpy(&amp;strDest,CharArry); //这里CharArry 代表数组头地址,等同于&amp;CharArry[0]

转字符串数组 俩个对调下就可以

#13



//转为string的
char *a = "abcdefg";
string str(a);


char 转为string直接强制转化(LPCTSTR)或者

char ch[256];
ch = str.GetBuffer(str.GetLength());//str的长度应该小于ch的长度

#14


\\\\\\\\\\\\\\\\\\\\\\\1/////////////////////////////////
string ( const char * s, size_t n );
    Content is initialized to a copy of the string formed by the first n characters in the array of characters pointed by s.
string ( const char * s );
    Content is initialized to a copy of the string formed by the null-terminated character sequence (C string) pointed by s. The length of the caracter sequence is determined by the first occurrence of a null character (as determined by traits.length(s)). This version can be used to initialize a string object using a string literal constant.

// string::copy
#include <iostream>
#include <string>
using namespace std;

int main ()
{
  size_t length;
  char buffer[20];
  string str ("Test string...");
  length=str.copy(buffer,6,5);
  buffer[length]='\0';
  cout << "buffer contains: " << buffer << "\n";
  return 0;
}

\\\\\\\\\\\\\\\\\\\\\\\2/////////////////////////////////
size_t copy ( char* s, size_t n, size_t pos = 0) const;

Copy sequence of characters from string
Copies a sequence of characters from the string content to the array pointed by s. This sequence of characters is made of the characters in the string that start at character position pos and span n characters from there.

The function does not append a null character after the content copied. To retrieve a temporary c-string value from a string object, a specific member function exists: c_str.

// string::copy
#include <iostream>
#include <string>
using namespace std;

int main ()
{
  size_t length;
  char buffer[20];
  string str ("Test string...");
  length=str.copy(buffer,6,5);
  buffer[length]='\0';
  cout << "buffer contains: " << buffer << "\n";
  return 0;
}

#15


该回复于2010-07-19 11:07:43被版主删除

#16


这个不错,很受用

#17


大侠!在C#中怎么实现!

#1


看看string 的实现,就清楚了

#2


直接用string 的copy constructor

        char a[]="shinesun";
string A(a);

cout<<A;

#3


直接copy过去 会自动转换的

#4


copy根本不行啊,只能将string转换成数组

#5


引用 2 楼 hgxinyu 的回复:
直接用string 的copy constructor

        char a[]="shinesun";
string A(a);

cout<<A;


string str;
char [12] = "string";

str = char;

#6


字符数组转化成string类型
char ch [] = "ABCDEFG";
string str(ch);//也可string str = ch;
或者
char ch [] = "ABCDEFG";
string str;
str = ch;//在原有基础上添加可以用str += ch;

将string类型转换为字符数组
char buf[10];
string str("ABCDEFG");
length = str.copy(buf, 9);
buf[length] = '\0';
或者
char buf[10];
string str("ABCDEFG");
strcpy(buf, str.c_str());//strncpy(buf, str.c_str(), 10);

#7


string的 data函数专门用来返回字符数组

#8


string可以直接用char*初始化
char* a = "Hello World";
string s(a);(

字符数组转string可以用c_str()函数
s.c_str();

#9


晕,是string转字符数组

#10


直接用字符数组初始化string

#11



char CharArry[MAX_PATH] = "我爱你";
string strDest;
memcpy(&strDest,CharArry); //这里CharArry 代表数组头地址,等同于&CharArry[0]

#12


引用 11 楼 cqj008 的回复:
C/C++ code

char CharArry[MAX_PATH] = "我爱你";
string strDest;
memcpy(&amp;strDest,CharArry); //这里CharArry 代表数组头地址,等同于&amp;CharArry[0]

转字符串数组 俩个对调下就可以

#13



//转为string的
char *a = "abcdefg";
string str(a);


char 转为string直接强制转化(LPCTSTR)或者

char ch[256];
ch = str.GetBuffer(str.GetLength());//str的长度应该小于ch的长度

#14


\\\\\\\\\\\\\\\\\\\\\\\1/////////////////////////////////
string ( const char * s, size_t n );
    Content is initialized to a copy of the string formed by the first n characters in the array of characters pointed by s.
string ( const char * s );
    Content is initialized to a copy of the string formed by the null-terminated character sequence (C string) pointed by s. The length of the caracter sequence is determined by the first occurrence of a null character (as determined by traits.length(s)). This version can be used to initialize a string object using a string literal constant.

// string::copy
#include <iostream>
#include <string>
using namespace std;

int main ()
{
  size_t length;
  char buffer[20];
  string str ("Test string...");
  length=str.copy(buffer,6,5);
  buffer[length]='\0';
  cout << "buffer contains: " << buffer << "\n";
  return 0;
}

\\\\\\\\\\\\\\\\\\\\\\\2/////////////////////////////////
size_t copy ( char* s, size_t n, size_t pos = 0) const;

Copy sequence of characters from string
Copies a sequence of characters from the string content to the array pointed by s. This sequence of characters is made of the characters in the string that start at character position pos and span n characters from there.

The function does not append a null character after the content copied. To retrieve a temporary c-string value from a string object, a specific member function exists: c_str.

// string::copy
#include <iostream>
#include <string>
using namespace std;

int main ()
{
  size_t length;
  char buffer[20];
  string str ("Test string...");
  length=str.copy(buffer,6,5);
  buffer[length]='\0';
  cout << "buffer contains: " << buffer << "\n";
  return 0;
}

#15


该回复于2010-07-19 11:07:43被版主删除

#16


这个不错,很受用

#17


大侠!在C#中怎么实现!