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

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


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

ประเภทที่ 1:

อัลกอริทึม

Begin
   Assign value to string m.
   For i = 0 to sizeof(m)
      Print the char array.
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 instead.

อัลกอริทึม

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