在C++中,substr()
函數是用來提取字符串的子串的。它接受兩個參數:起始位置和子串長度。
以下是substr()
函數的用法:
string substr (size_t pos, size_t len) const;
參數說明:
pos
:子串的起始位置,從0開始計數。len
:子串的長度。如果未指定此參數,則提取從起始位置到字符串末尾的所有字符。返回值:
示例用法:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
std::string sub1 = str.substr(7); // 從位置7開始提取子串
std::cout << sub1 << std::endl; // 輸出:World!
std::string sub2 = str.substr(0, 5); // 從位置0開始提取長度為5的子串
std::cout << sub2 << std::endl; // 輸出:Hello
return 0;
}
請注意,substr()
函數返回的是一個新的字符串,而不是修改原始字符串。