私は初心者です。QT のファイルから特定の行を取得しようとしています。ここまでできたのですが、qbytearray でのアクセス方法がわかりません。
void Model::viewFile(const char* name1)
{
QString name = QString::fromStdString(name1);
QByteArray fileData;
QFile file("C:\\Qt-Development\\TestApps\\Project1\\Property.txt"); //openin my file
if(file.open(QIODevice::ReadOnly))
{
fileData=file.readAll();
int len= fileData.length();
//here I want to serach for the particular word in the file which is in my qbytearray
}
}