还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

CString的截取字符串,截取ip:port

来源:清泛原创     2016-06-23 16:26:03    人气:     我有话说( 0 人参与)

CString截取ip:port,代码如下:CString strIpPort = "127.0.0.1:8888";CString strIp, strPort;int index = strIpPort.Find('...

CString截取ip:port,代码如下:
CString strIpPort = "127.0.0.1:8888";
CString strIp, strPort;
int index = strIpPort.Find(':');
if (index > 0)
{
	strIp = strIpPort.Left(index);
	strPort = strIpPort.Right(strIpPort.GetLength()-index-1);
}
else
{
	AfxMessageBox("字符串格式不对");
}
Left 函数从字符串</a>头部开始截取到index位置,Right 函数从分隔符 ':' 后面开始截取到字符串尾部。

CString 字符串 截取

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: