I am trying to replace a substring of length 1 with a char - but obviously I cannot just stick a char in there. Can I do this on the fly? As in:
for (int j=0; j <= startword.size(); j++) {
for (char i='a'; i < 'z'; i++) {
choices.add(startword.replace(j, 1, string(i));
(but obviously not like that!)
Thanks for your help, this answer is not yet explicit on stackoverflow for c++ (I think only for java). Please excuse some n00bishness here, I am really giving it everything I promise.
Tyler