Hello
When I execute this code, i get the following result:
Rec=om=men=da=tion
But i would like to receive a string with the soft hyphen char as delimiter (e.g. "Recxadomxadmenxaddaxadtion"
Is this possible without parsing the result on my own?
Regards Daniel
Hyphen hyphen = new Hyphen("hyph_en_US.dic");
HyphenResult hyphenResult = hyphen.Hyphenate("Recommendation")
string result = hyphenResult.HyphenatedWord;
When I execute this code, i get the following result:
Rec=om=men=da=tion
But i would like to receive a string with the soft hyphen char as delimiter (e.g. "Recxadomxadmenxaddaxadtion"
Is this possible without parsing the result on my own?
Regards Daniel