String replace with next character

I have to create a function which take 2 input one is n number and on e is message if I call function (5,’why’)it will return next 5 char of ‘why’so output will be ‘bmd’

Réponses (1)

solution:
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end

Catégories

En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by