i have a string like this:
string word="HELLO";
and clear indexes of string like this:
IList<string> clearIndexes = indexes;// for example {2,4}
what i want is
*E*L*// the 2th and 4th elements are clear and the other should be shown with *,
how can I do that?