0

我有一个要从中解析单词的文档,但我想将除 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”。

4

1 回答 1

0

创建一个“空白字符”列表,然后每次遇到一个字符时,检查该字符是否在列表中,如果是,则您已经开始了一个新单词。这个例子是用python写的,但是概念是一样的。

def get_words(whitespace_chars, string):
    words = []
    current_word = ""
    for x in range(0, len(string)):
        #check to see if we hit the end of a word.                                                                                                                                                                                           
        if(string[x] in whitespace_chars and current_word != ""):
            words.append(current_word)
            current_word = ""
        #add current letter to current word.                                                                                     
        else:
            current_word += string[x]
    #if the last letter isnt whitespace then the last word wont be added, so add here.                                                                                                                                                       
    if(current_word != ""):
        words.append(current_word)
    return words

回话

于 2013-01-27T03:05:46.233 回答