I am trying to create a program where I could read string data from a file and store it into an array, but I want to skip any integers or non-letters and not read them into the array. Any ideas on how to do that?
This is my code:
#include <iostream>
#include <stream>
#include <iomanip>
#include <cstdlib>
#include <algorithm>
#include <cctype>
#include <string>
using namespace std;
void loadData();
int main()
{
    loadData();
    return 0;
}
void loadData()
{
    const int SIZE = 100;
    string fileName;
    std::string wordArray[SIZE];
    cout << "Please enter the name of the text file you want to process followed by '.txt': " << endl;
    cin >> fileName;
    ifstream dataFile; 
    dataFile.open(fileName, ios::in);
    if (dataFile.fail())
    {
        cerr << fileName << " could not be opened." << endl; //error message if file opening fails
        exit(-1);
    }
    while (!dataFile.eof())
    {
        for (int i = 0; i < SIZE; i++)
        {
            dataFile >> wordArray[i];
            for (std::string& s : wordArray) //this for loop transforms all the words in the text file into lowercase
                std::transform(s.begin(), s.end(), s.begin(),
                    [](unsigned char c) { return std::tolower(c); });
            cout << wordArray[i] << endl;
        }
    }
}
 
    