【字符串操作】截取字符串

eg:截取一段字符串中的若干信息

  

#include <stdio.h>
#include <iostream>
#include <regex>
using namespace std;

void main()
{	
	string strsrc = "http://192.168.1.108:88/my/test/func?";

	int pos = strsrc.rfind("/");
	if (string::npos != pos)
	{
		string strfunc = strsrc.substr(pos+1).data();
		strfunc = strfunc.erase(strfunc.length()-1, 1);<span style="white-space:pre">	</span>//FUNC 
		string strurl = strsrc.substr(0, pos);
	}


	int poshttp = strsrc.find("http://");
	int posport = strsrc.rfind(":");
	if (string::npos != poshttp && string::npos != posport && (posport - poshttp) > strlen("http://"))
	{
		string strip = strsrc.substr(poshttp+7, posport-poshttp-7);	//获取ip

		string strport = strsrc.substr(posport+1).data();
		int posported = strport.find("/");
		if (string::npos != posported)
		{
			strport = strport.substr(0, posported);	//获得端口
			int port;
			sscanf(strport.data(), "%d", &port);	//端口转化为int
			//scanf获取屏幕输出源
			int abc =0 ;
			abc++;
		}
	}
	return;

}


http://192.168.1.108:88/my/test/func?

筛选出其中的func /IP /PORT等等信息

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值