例1.TXT文本内容假如下:
192.168.1.1–2016/10/23 18:06
192.168.1.235–2016/10/23 19:06
192.168.1.123–2016/10/23 19:09
char ip = “192.168.1.1” //本人定义了一个IP
int repeat = 0 //重复定义
然后希望打开文本后 查询里面全部内容 和 定义的ip 能否相同 假如相同等于1 假如不相同等于0
192.168.1.1–2016/10/23 18:06
192.168.1.235–2016/10/23 19:06
192.168.1.123–2016/10/23 19:09
char ip = “192.168.1.1” //本人定义了一个IP
int repeat = 0 //重复定义
然后希望打开文本后 查询里面全部内容 和 定义的ip 能否相同 假如相同等于1 假如不相同等于0
解决方案
20
ifstream f("1.txt");//打开txt文件 string content(istream_iterator<char>(f), (istream_iterator<char>()));//读取txt文件 const char * ip = "192.168.1.1"; int repeat = (content.find(ip, 0) == string::npos) ? 0 : 1;//查找目标文本