文本文件中的第一个字符会导致.substr()错误

时间:2012-12-09 20:41:17

标签: c++ parsing substr

我有一个文本文件:

this is an email file with DummyTest@my.test and some other text for the test
ATest@my.test
BTest@my.test

然后我有一个substr (s, e - s),其中s是行的开头,e是给我这个结尾的结尾:

terminate called after throwing an instance of 'std::out_of_range'
what():  basic_str`entering::substr
Aborted

这仅发生在底部两行,第一行将打印DummyTest@my.test

我知道的问题是当s位于行的开头并且之前没有字符(即“ATest@my.test”或“BTest@my.test”)时,会发生什么,发生此错误。可以添加什么来防止这种情况发生?

while (getline(fin, lines))
{
for (int i = 0; i < lines.length(); i++)
{
if (lines[i] == '@')
{
int s;

if (i == 0 || i == 1) break;
for (s = i - 1; s < lines.length() ; s--)
{
if(validChar(lines[s]) == false )
 {
 s = s + 1;
 break;
 }
} //for 

 int e; 
 bool hasDot = false;  

 for (e = i + 1; e < lines.length(); e++)
 {
 if (e == lines.length()) break;
 if(validChar(lines[e]) == false )
 {
 break;
 } // if in for

 if(lines[e] == '.') hasDot = true;
 } // for 

anEmail = lines.substr (s,  e - s);
if (s < i && e > i && hasDot == true)
cout << anEmail << endl; 

1 个答案:

答案 0 :(得分:1)

显然,由于抛出的out_of_range异常,你的一个参数超出了范围。我会进行一些测试,以确保值s和e是你所期望的。