我在这个程序上遇到了一些麻烦,我无法弄清楚我做错了什么;该程序仍然不允许显示文件,它仍然不会大写字母“a”。该程序应该从外部文件input.txt读取,大写所有以字母“a”开头的单词,然后将它们写入外部文件output.txt。 任何帮助将不胜感激!谢谢!
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
void nm(string nm, ifstream& xfile);
void mov(ifstream& xfile, string& valfile);
void exam(string& valfile);
void display(string nm, ofstream& yfile, string& valfile);
int main()
{
ifstream xfile;
ofstream yfile;
string valfile;
nm("input.txt", xfile);
mov(xfile, valfile);
exam(valfile);
display("output.txt", yfile, valfile);
}
void nm(string nm, ifstream& xfile)
{
xfile.open(nm);
if (xfile.fail())
{
cerr << "Unable to open file \"" << nm << "\" for reading.\n";
exit(1);
}
}
void mov(ifstream& xcode, string& valfile)
{
while (xcode.good())
{
valfile += xcode.get();
}
xcode.close();
cout << endl << '[' << valfile[valfile.length()-1] << ']' << endl;
valfile = valfile.substr( 0, valfile.length()-1 );
}
void exam(string& valfile)
{
for(int i = 1; i < valfile.length(); i++)
{
if( valfile[i] == 'a' && isspace((int) valfile[i-1]) &&
( isspace((int) valfile[i+1]) || isalpha((int) valfile[i+1]) ) )
{
valfile[i] = 'A';
}
}
}
void display(string nm, ofstream& yfile, string& valfile)
{
yfile.open(nm);
yfile << valfile;
yfile.close();
}
答案 0 :(得分:2)
为了编译你的代码(在gcc编译器上),我必须做这些修改:
为要定义的#include <cstdlib>
函数添加exit
更改了行:
xfile.open(nm);
进入xfile.open(nm.c_str());
yfile.open(nm);
进入yfile.open(nm.c_str());
因为nm是一个字符串而ifstream / ofstream.open采用普通的旧char数组。要将字符串转换为char数组,请使用somestring.c_str()
函数。
这个表达式valfile[valfile.length()-1]
会返回valfile字符串中的最后一个字符...例如,如果file不为空,valfile [0]将只返回文件中的一个(First)字符。要更正它,只需打印valfile
:
cout << endl << '[' << valfile << ']' << endl;
将这个丑陋的黑客添加到您的考试功能中,以便在文件开头大写可能的a
字符:
void exam(string& valfile)
{
if( (valfile.length()>=1) && (valfile[0]=='a')) valfile[0]='A';
...
答案 1 :(得分:1)
将char*
传递给ifstream
构造函数,使用c_str()
函数。
在display()
yfile.open(nm.c_str());
在nm()
xfile.open(nm.c_str());
为退出
添加#include <cstdlib>
刚才有了另一个想法:
#include <fstream>
#include <string>
#include<algorithm>
#include<iterator>
#include <sstream>
using namespace std;
int main()
{
vector <string> v;
ifstream ip("input.txt");
ofstream op("output.txt");
string str;
while (getline(ip, str))
v.push_back(str);
transform(v.begin(),
v.end(),
ostream_iterator<string>(op,"\n"),
[](const string& x){
stringstream iss(x);
vector <string> words;
string s;
//Split words
copy(istream_iterator<string>(iss),
istream_iterator<string>(),
back_inserter(words));
for(auto& it:words)
if(it[0]=='a')
it[0]='A';
s=words[0];
for(auto it=1;it<words.size();++it)
s+=" "+words[it]; //Join words
return s;
}
);
ip.close();
op.close();
}
//g++ -o test test.cpp -std=c++0x
答案 2 :(得分:1)
你可能想从零开始迭代,你正在跳过第一个字符。
void exam(string& valfile)
{
for(int i = 0; i < valfile.length(); i++)
{
if( valfile[i] == 'a' && isspace((int) valfile[i-1]) &&
( isspace((int) valfile[i+1]) || isalpha((int) valfile[i+1]) ) )
{
valfile[i] = 'A';
}
}
}
答案 3 :(得分:1)
首先纠正'考试'功能。现在,循环的写入方式将访问字符串末尾的字符。
我把主要改为:
int main()
{
std::string s("a a a a a");
std::cout << "before=[" << s << ']' << std::endl;
exam(s);
std::cout << " after=[" << s << ']' << std::endl;
return 0;
}
得到了:
$ ./a.exe
before=[a a a a a]
after=[a A A A a]
这是你想要的吗?