2
可能重複:
How to convert a number to string and vice versa in C++C++提振正則表達式匹配結果轉換爲其他格式
我應該怎麼了boost ::正則表達式匹配結果轉換爲其他格式,比如整數下方碼?
string s = "abc123";
boost::regex expr("(\\s+)(\\d+)");
boost::smatch match;
if(boost::regex_search(s, match, expr)) {
string text(match[0]);
// code to convert match[1] to integer
}