私はコンコーダンスプログラムに取り組んでおり、現在getContext関数に取り組んでいます。この関数は正規表現のように機能する必要がありますが、指定された単語の前後の文字列のベクトルを返すようにしたいです。私が考えていることが正しいかどうかはわかりませんが、私が考えることができるのはそれだけです。
これが私が考えていたものです。単語を取り込んで2つのベクトルを作成し、指定した単語の左右に1つずつ返します。
ありがとう。:D
コードファイル全体を含める必要があるとは思いませんでしたが、誰かがそれを必要とする場合は、私もそれを置くことができます。
/* Get context for input parameter word (case-insensitive comparison)
* Return a dynamically allocated vector of strings, each string
* consisting of contextSize number of words before word and contextSize
* number of words after word, with word in the middle (set off with "<<"
* before the word and ">>" after the word). ContextSize defaults to 5.
* It is user's responsibility to delete the vector.
*/
vector<string>*Concordance::getContext(string word, int contextSize = 5){
vector<string> before;
vector<string> after;
return 0;
}