清泛IT社区
标题:
std::string截取字符串,截取ip:port
[打印本页]
作者:
清泛网
时间:
2016-05-05 16:36
标题:
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();
欢迎光临 清泛IT社区 (https://bbs.tsingfun.com/)
Powered by Discuz! X3.3