it about hindi text proccessing in in linux using c++ -
How to do resource on Hindi text with any suggestion using c ++ in Linux I have an encoded file in UTF-8 I want to read a Hindi text and find a specific word on it. How can we do this ??
Design of UTF 8 means that you do not have to take any special encoding specific steps C ++ Standard Library Functions based on char
are all 8 bit clean, so they will all work with UTF-8 (for enigmatic environments where char is not 8 bit> ) .
std :: string word = / * the words you are searching for, utf8 * /; Std :: string fileContents = / * file contents * /; Std :: string :: iterator location = fileContents.find (word);
Comments
Post a Comment