String replace with next character
1 回表示 (過去 30 日間)
古いコメントを表示
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’
0 件のコメント
回答 (1 件)
JESUS DAVID ARIZA ROYETH
2019 年 11 月 24 日
solution:
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で String についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!