String replace with next character

2 visualizaciones (últimos 30 días)
Roger Nadal
Roger Nadal el 24 de Nov. de 2019
Respondida: JESUS DAVID ARIZA ROYETH el 24 de Nov. de 2019
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’

Respuestas (1)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH el 24 de Nov. de 2019
solution:
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by