Random string generation of message

5 Ansichten (letzte 30 Tage)
Roger Nadal
Roger Nadal am 24 Nov. 2019
Kommentiert: Walter Roberson am 27 Nov. 2019
I have to pass (3,’hello’) it should return random characters between the message between each pair of letters like’habceabdlghflvcxo’

Antworten (2)

Bhaskar R
Bhaskar R am 24 Nov. 2019
Assuming you are dealing with row string
function out_str = rand_string_gen(np, str)
% np = numberf of positions
% str = input string
out_str = []; % initialize output string with empty
for ii = 1: length(str)-1
ram_str = char(randi([double('a'), double('z')], 1, np));
out_str = [out_str, str(ii), ram_str];
end
% your output string out_str
out_str(end+1) = str(end);
end
  5 Kommentare
Roger Nadal
Roger Nadal am 26 Nov. 2019
How to print all word in text that are together and how many time they appear one word per line order from most to least?
Walter Roberson
Walter Roberson am 27 Nov. 2019
Please start a new Question for that. When you do, indicate whether you have the Text Analytics Toolbox, and define exactly what a "word" is for your purposes.

Melden Sie sich an, um zu kommentieren.


Guillaume
Guillaume am 24 Nov. 2019
function out_str = rand_string_gen(np, str)
out_str = regexprep(str, '.(?!$)', sprintf('$0${char(randi(double(''az''), 1, %d))}', np));
end

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by