Encryption of a string

1 view (last 30 days)
Roger Nadal
Roger Nadal on 23 Nov 2019
Commented: Walter Roberson on 24 Nov 2019
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’

Accepted Answer

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH on 23 Nov 2019
Edited: JESUS DAVID ARIZA ROYETH on 23 Nov 2019
solution:
function output=yourfunction(n,e)
output=char(double(e)+n)
end
  2 Comments
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH on 24 Nov 2019
not "bmd" but "alc"
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end

Sign in to comment.

More Answers (1)

Roger Nadal
Roger Nadal on 24 Nov 2019
I want remove n number of random letter between the message for example ‘habcefghlnmolasdo’ should return ‘hello’
  3 Comments
Walter Roberson
Walter Roberson on 24 Nov 2019
output = input_message(1:n+1:end)

Sign in to comment.

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by