我有一个要从中解析单词的文档,但我想将除 az、AZ、0-9 或撇号之外的任何内容视为空白。如果我之前使用以下代码,我该怎么做:
ifstream file;
file.open(filePath);
while(file >> word){
listOfWords.push_back(word); // I want to make sure only words with the stated
// range of characters exist in my list.
}
因此,例如,单词 hor.se 将是我列表中的两个元素,“hor”和“se”。