std::string截取字符串,截取ip:port
清泛原创
std::string ip("127.0.0.1:8888");
int index = ip.find_last_of(':');
// 获取ip
ip.substr(0, index).c_str();
// 获取port
ip.substr(index + 1).c_str();
int index = ip.find_last_of(':');
// 获取ip
ip.substr(0, index).c_str();
// 获取port
ip.substr(index + 1).c_str();
上一篇:_access头文件
下一篇:解决:Successful WSAStartup not yet performed. Error code : 10093.