91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何在c++中使用streamstring進行字符串操作

c++
小樊
93
2024-09-13 01:45:13
欄目: 編程語言

std::stringstream 是 C++ 標準庫中的一個類,它位于 <sstream> 頭文件中。std::stringstream 可以方便地處理字符串和數字之間的轉換,以及對字符串進行拼接、分割等操作。

下面是一些使用 std::stringstream 進行字符串操作的例子:

1. 將數字轉換為字符串

#include<iostream>
#include <sstream>
#include<string>

int main() {
    int num = 42;
    std::stringstream ss;
    ss<< num;
    std::string result;
    ss >> result;
    std::cout << "Number as string: "<< result<< std::endl;
    return 0;
}

2. 將字符串轉換為數字

#include<iostream>
#include <sstream>
#include<string>

int main() {
    std::string str_num = "42";
    std::stringstream ss;
    ss<< str_num;
    int result;
    ss >> result;
    std::cout << "String as number: "<< result<< std::endl;
    return 0;
}

3. 拼接字符串

#include<iostream>
#include <sstream>
#include<string>

int main() {
    std::string str1 = "Hello";
    std::string str2 = "World";
    std::stringstream ss;
    ss<< str1 << " "<< str2;
    std::string result;
    ss >> result;
    std::cout << "Concatenated string: "<< result<< std::endl;
    return 0;
}

4. 分割字符串

#include<iostream>
#include <sstream>
#include<string>

int main() {
    std::string input = "Hello World";
    std::stringstream ss(input);
    std::string word1, word2;
    ss >> word1 >> word2;
    std::cout << "First word: "<< word1 << ", Second word: "<< word2<< std::endl;
    return 0;
}

這些例子展示了如何使用 std::stringstream 進行基本的字符串操作。你可以根據需要進行更復雜的操作,比如格式化輸出、處理逗號分隔的值(CSV)等。

0
鄂尔多斯市| 中阳县| 南宫市| 伊宁市| 揭阳市| 镇坪县| 青海省| 麻城市| 新邵县| 肇东市| 无极县| 苍溪县| 枣强县| 隆回县| 社会| 宜宾市| 浦城县| 河池市| 正定县| 福建省| 新龙县| 延川县| 芷江| 唐山市| 天长市| 绥中县| 胶州市| 塔城市| 密云县| 叶城县| 大理市| 台东县| 安多县| 福安市| 民丰县| 毕节市| 青田县| 白沙| 安丘市| 鸡西市| 安康市|