これまでにピリオド (".") だけを含むベクトルのベクトルがあり、グリッド上の特定の座標を、入力ファイルから取り込んでいるシンボルに置き換えたいと考えています。置換メソッドを使用していますが、このエラーが発生し続けます
「エラー: replace の呼び出しに一致する関数がありません (std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, const char [2], const char*)」
そのエラーの意味がわかりません。すべての助けに感謝します。前もって感謝します
ここに私のコードがあります
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
string locationfilename, filenames,symbol;
int numRows, numCols, startRow, startCol, endRow, endCol, possRow, possCol, id;
cout<< "Enter Locations Filename"<<endl;
cin>>locationfilename;
cout<< "Enter Names Filename"<<endl;
cin>>filenames;
ifstream locations(locationfilename.c_str());
ifstream names(filenames.c_str());
locations>>numRows>>numCols>>startRow>>startCol>>endRow>>endCol;
vector <string> rows(numCols,".");
vector< vector<string> > grid(numRows,rows);
locations>>possRow>>possCol>>symbol>>id;
while(!locations.fail())
{
if(possRow>numRows || possCol>numCols)
{
cout<<id<< " out of bounds-ignoring"<<endl;
}
else
{
replace(grid.at(possRow).front(),grid.at(possRow).back(),".",symbol.c_str());
}
locations>>possRow>>possCol>>symbol>>id;
}
}