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’
回答(1 个)
JESUS DAVID ARIZA ROYETH
2019-11-24
solution:
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!