Azzera filtri
Azzera filtri

Encryption of a string

3 visualizzazioni (ultimi 30 giorni)
Roger Nadal
Roger Nadal il 23 Nov 2019
Commentato: Walter Roberson il 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’

Risposta accettata

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH il 23 Nov 2019
Modificato: JESUS DAVID ARIZA ROYETH il 23 Nov 2019
solution:
function output=yourfunction(n,e)
output=char(double(e)+n)
end
  2 Commenti
Walter Roberson
Walter Roberson il 24 Nov 2019
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
JESUS DAVID ARIZA ROYETH il 24 Nov 2019
not "bmd" but "alc"
function output=yourfunction(n,e)
output=char(mod(double(e)-97+n,26)+97);
end

Accedi per commentare.

Più risposte (1)

Roger Nadal
Roger Nadal il 24 Nov 2019
I want remove n number of random letter between the message for example ‘habcefghlnmolasdo’ should return ‘hello’
  3 Commenti
Roger Nadal
Roger Nadal il 24 Nov 2019
If I have given n is 3 so it should remove 3 random in between characters but this code is not removing the last random characters
Walter Roberson
Walter Roberson il 24 Nov 2019
output = input_message(1:n+1:end)

Accedi per commentare.

Categorie

Scopri di più su Encryption / Cryptography in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by