我正在尝试创建一个程序,该程序在文件中找到多行,这些行连续//
并用/* * * */
替换它们。但是//
的单行保持不变。以下示例代码很好地说明了我要执行的操作。
示例-original.cpp
#include <iostream>
using namespace std;
//to be replaced
//to be replaced
//to be replaced
//to be replaced
BLAH BLAH BLAH
...
...
int main()
{
...
...
//to be replaced
//to be replaced
}
//to be left as it is
return 0;
}
Wantedoutput.cpp
#include <iostream>
using namespace std;
/* replaced
*replaced
*replaced
*replaced
*/
BLAH BLAH BLAH
...
...
int main()
{
...
...
/*replaced
*replaced
*/
}
//to be left as it is
return 0;
}
我创建了一个程序,该程序在第一次成功更改多行注释时发生,但它不适用于其后的其他多行注释。输出存储在“xyz.tmp”中。要修改的文件作为命令行参数提供。首先,我获得了包含//
的行号并将其存储在数组中。
从示例中,我的数组将是`startcom [] = {4,7,16,17}'。多行注释的第一行和最后一行的行号存储在此数组中。我希望这有助于理解代码。
然后我使用这个数组来检查它是否包含连续值。最后,我再次读取该文件,并检查它是否与该数组中的值匹配。我尝试通过打印每行的内容进行调试,然后将其写入临时文件。它显示字符串已被替换但在输出文件中,它不显示任何更改。如果有人能说出为什么代码不适用于多个注释行的其他实例,那将是很好的。
mycode.cpp
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <vector>
#include <sys/stat.h>
using namespace std;
bool replace(std::string& str, const std::string& from, const std::string& to) {
size_t start_pos = str.find(from);
//cout << "within function " << "string is " << str << "from position, to position " << from << "," << to << '\n';
if(start_pos == std::string::npos)
return false;
str.replace(start_pos, from.length(), to);
return true;
}
int main (int argc, char* argv[])
{
string line;
int linecount=0, linearray[1000],temp=0;
std::vector<int> startcom, endcom;
ofstream TempFile ("xyz.tmp");
ifstream myfile (argv[1]);
if (myfile.is_open())
{
while ( getline (myfile,line) )
{
linecount++;
if (line.find("//") != std::string::npos)
{
linearray[temp]=linecount;
temp++;
cout << "linecount->" <<linecount << "comment line" << line << '\n';
}
}
myfile.close();
}
else
{
cout << "Unable to open file";
}
for(int k=0;k<temp;k++)
cout << "array elements are: " << linearray[k] << '\n';
cout << "size of temp is: " <<temp << '\n';
for(int i=0;i<temp;i++)
{
int j=0;
cout << "for loop " << i << " element is "<< linearray[i] <<'\n';
if((linearray[i]+1) == linearray[i+1])
{
startcom.push_back(i);
cout << "outer if part" << '\n';
for(j=i+1; j < 10; j++)
{
if((linearray[j]+1) == linearray[j+1])
{
cout << "still continuing" << "j value " << j << '\n';
}
else
{
startcom.push_back(j);
i=j;
cout << " inner else part for line " << j << '\n';
break;
}
}
cout << "possible multiple comment lines at line" << i << '\n';
}
else
{
cout << "outer else part" << '\n';
}
cout << "array element " << linearray[i] << '\n';
}
//for listing out elements of startcom,endcom arrays
cout << "startcom value " << '\n';
for (std::vector<int>::iterator it = startcom.begin(); it != startcom.end(); ++it)
std::cout << ' ' << *it;
cout << "startcom size is" << startcom.size() << "\n";
linecount=0;
int tmpcount=0,a=0,b=0;
ifstream myfile1 (argv[1]);
for(tmpcount=0;tmpcount<startcom.size();tmpcount++)
{
if (myfile1.is_open())
{
while ( getline (myfile1,line) )
{
linecount++;
a=startcom.at(tmpcount);
b=startcom.at(tmpcount+1);
if (linecount == linearray[a] && a!= b)
{
cout << "before replacing (startcom) ---> " << "at line -->" << linecount << line << '\n';
replace(line, "//", "/*");
TempFile << line << '\n';
//while(replace(line, "//", "/*"))
//{
// cout << " success repace " << '\n';
//}
//linearray[temp]=linecount;
//temp++;
//cout << "linecount->" <<linecount << "this line contains //" << line << '\n';
cout << "this line has been replaced ---> " << line << '\n';
}
else if (linecount == linearray[b] && a!= b)
{
cout << "before replacing (endcom) ---> " << "at line -->" << linecount << line << '\n';
replace(line, "//", " *");
TempFile << line << '\n';
TempFile << "*/" << '\n';
cout << "this line has been replaced ---> " << line << '\n';
}
else if (linecount > linearray[a] && linecount < linearray[b] && a!= b)
{
cout << "before replacing (start to end) ---> " << "at line -->" << linecount << line << '\n';
replace(line, "//", " *");
TempFile << line << '\n';
cout << "this line has been replaced ---> " << line << '\n';
}
else
{
cout << "No replacement " << "at line -->" << linecount << "\n" ;
TempFile << line << '\n';
}
}
myfile1.close();
TempFile.close();
}
else
{
cout << "Unable to open file" << '\n';
}
}
return 0;
}