C++ コードについて助けが必要です。
ファイルを検索して行ごとに読み取りたいのですが、電話番号の親が一致する場合は、その行を別のファイルに出力する必要があります。
文字列を一致させることはできますが、よくわかりません : 電話番号の形式/パターンを一致させる方法 電話番号は異なる場合があります。電話番号の一致の形式に従いたいだけです。
番号の例は、xx-xxx-xxxx です。
これは私のコードです
// reading a text file
if (mywritingfile.is_open())
{
//Getting data line from file.
while ( getline (myfile,line) )
{
if (Match the Pattren from the line)//Need Help Here.
{
//Printing the Mached line Content Of the source File to the destination the File.
//Output Every line that it fetches
cout << line << endl;
mywritingfile << line << endl;
matches++;
}
}
}