我试图从包含HTML的文本文件中获取ID。 ID是从HTML中的URL中提取的,所以我循环遍历文件以找到正确的行,然后使用子字符串获取正确的信息。有两种不同类型的ID,所以我有两个不同的功能。
第二个(getYearId)工作正常,但第一个导致代码在当前已注释掉的部分上中止。正如您所看到的,我试图输出first1
的值只是为了发现它的输出是alue="
,这是我认为first
应该等于的一部分。我做错了什么?
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <regex>
using namespace std;
void getSyllabiId() {
string line;
ifstream myfile("syllabi.txt");
if (myfile.is_open()) {
while (getline(myfile, line)) {
if (line.find("View Assignments") != string::npos) {
string startDel = "syllabusid";
string endDel = "View";
unsigned int first1 = line.find(startDel);
unsigned int last1 = line.find(endDel);
cout << first1 + "\n";
//string syllabusID = line.substr(first1, last1 - first1);
//syllabusID = syllabusID.substr(startDel.size());
// cout << syllabusID + "\n";
}
}
myfile.close();
}
else cout << "Unable to open file.";
}
void getYearId() {
string line;
ifstream myfile("syllabi.txt");
if (myfile.is_open()) {
while (getline(myfile, line)) {
if (line.find("2014-2015</option>") != string::npos) {
string startDel = "value=\"";
string endDel = "\" selected";
unsigned int first = line.find(startDel);
unsigned int last = line.find(endDel);
string yearID = line.substr(first, last - first);
yearID = yearID.substr(startDel.size());
cout << yearID + "\n";
}
}
myfile.close();
}
else cout << "Unable to open file";
}
int main () {
getYearId();
getSyllabiId();
string x;
cin >> x;
return 0;
}
答案 0 :(得分:0)
问题是我从未检查过first1
和last1
是否有值,所以很明显在其中一个(或多个实例)中,其中一个没有导致代码中止。< / p>