中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在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
牙克石市| 定兴县| 彰化县| 沂源县| 淄博市| 侯马市| 大化| 同江市| 宜昌市| 开鲁县| 大名县| 乐至县| 乐陵市| 青岛市| 周口市| 嘉兴市| 南京市| 苏州市| 丰顺县| 兰州市| 余江县| 忻州市| 城固县| 遵义县| 朝阳市| 天祝| 温泉县| 耒阳市| 沧源| 杨浦区| 九龙县| 湖南省| 宝鸡市| 盐城市| 剑河县| 子洲县| 乡宁县| 广河县| 呼图壁县| 岳池县| 剑河县|