Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

วิธีการแปลงสตริงเป็นอาร์เรย์ถ่านใน C ++?


นี่คือโปรแกรม C++ สำหรับแปลงสตริงเป็นอาร์เรย์ถ่านใน C++ สามารถทำได้หลายวิธี

แบบที่ 1

อัลกอริทึม

Begin
   Assign a string value to a char array variable m.
   Define and string variable str
   For i = 0 to sizeof(m)
      Copy character by character from m to str.
      Print character by character from str.
End

ตัวอย่าง

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
   char m[]="Tutorialspoint";
   string str;
   int i;
   for(i=0;i<sizeof(m);i++)
   {
      str[i]=m[i];
      cout<<str[i];
   }
   return 0;
}

แบบที่ 2

เราสามารถเรียกใช้ฟังก์ชัน strcpy() เพื่อคัดลอกสตริงไปยังอาร์เรย์ถ่านได้

อัลกอริทึม

Begin
   Assign value to string s.
   Copying the contents of the string to char array using strcpy() .
End

ตัวอย่าง

#include <iostream>
#include <string>
#include <cstring>
using namespace std;
int main()
{
   string str = "Tutorialspoint";
   char c[str.size() + 1];
   strcpy(c, str.c_str());
   cout << c << '\n';
   return 0;
}

ผลลัพธ์

Tutorialspoint

ประเภทที่ 3

เราสามารถหลีกเลี่ยงการใช้ strcpy() ซึ่งโดยทั่วไปใช้ใน c โดย std::string::copy แทน

อัลกอริทึม

Begin
   Assign value to string s.
   Copying the contents of the string to char array using copy().
End

ตัวอย่าง

#include <iostream>
#include <string>
using namespace std;
int main()
{
   string str = "Tutorialspoint";
   char c[str.size() + 1];
   str.copy(c, str.size() + 1);
   c[str.size()] = '\0';
   cout << c << '\n';
   return 0;
}

ผลลัพธ์

Tutorialspoint