MATLAB: How to add letters to the end of words in a string.

array

I need to add a letter to the end of an array. I have a wordbank that's arranged in an array, and I need to add a letter to the end of every word in the array. How could I do it?
I have the wordbank and I need wordbank + 's', so basically an "s" added to every word in the bank.

Best Answer

strcat(wordbank,'s')