Encryption of a string
2 ビュー (過去 30 日間)
古いコメントを表示
Roger Nadal
2019 年 11 月 23 日
コメント済み: Walter Roberson
2019 年 11 月 24 日
I have to create a function which take 2 input one is n number and on e is message if I call function (4,’hi’) it will return next 4 char of ‘h’ and ‘i’ so output will be ‘lm’
0 件のコメント
採用された回答
JESUS DAVID ARIZA ROYETH
2019 年 11 月 23 日
編集済み: JESUS DAVID ARIZA ROYETH
2019 年 11 月 23 日
solution:
function output=yourfunction(n,e)
output=char(double(e)+n)
end
2 件のコメント
Walter Roberson
2019 年 11 月 24 日
The code JESUS DAVID ARIZA ROYETH provided does not care how long the input vector of characters is.
His code is correct for the problem as you defined it earlier.
You appear to now be wanting some kind of "wrap-around", but you have not defined it.
What should the function do with upper-case letters? What should it do with lower-case letters? What should it do with digits? What should it do with space characters? What should it do with punctuation such as period?
JESUS DAVID ARIZA ROYETH
2019 年 11 月 24 日
not "bmd" but "alc"
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で String についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!