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();

字符串截取

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部