C++ string 與char互換關係

C++ string 與char互換關係

二月 10, 2025

char陣列<=>C-style 字符串
char陣列轉string

1
2
3
char arr[] = "Hello";
std::string str = arr; // 將 C-style 字符串轉換為 std::string
std::cout << str << std::endl; // 輸出:Hello

string轉char陣列

1
2
3
std::string str = "Hello";
const char* arr = str.c_str(); // 取得 C-style 字符串指標
std::cout << arr << std::endl; // 輸出:Hello

遍歷string

1
2
3
4
5
std::string str = "Hello, World!";
for (char ch : str) {
std::cout << ch << ' '; // 輸出每個字符
}
std::cout << std::endl;

C-style 字符串函數:
計算長度

1
2
const char* str = "Hello";
std::cout << strlen(str) << std::endl; // 輸出:5

字串轉述字:

1
2
string s;
int a=stoi(s);

數字轉字串:

1
2
3
int num = 123;
std::string str = std::to_string(num); // 將整數轉換為字符串
std::cout << str << std::endl; // 輸出:123

判斷char為數字或是英文:

1
2
3
4
if(ch[i]>='0'&& ch[i]<='9')

if((ch[i]>='a'&& ch[i]<='z')||(ch[i]>='A'&& ch[i]<='Z'))

字串反轉:

1
reverse(ans.begin(),ans.end());

(array也可以反轉)

1
reverse(arr.begin(), arr.end());

char轉int

1
int intt=charr-'0';