How to randomly change a digit in a string
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dani Niwa
el 22 de Dic. de 2020
Respondida: Joseph Wilson
el 22 de Dic. de 2020
I have a string = 00101 How i can randomly change one digits of that string? Ex: 00101=>00100
0 comentarios
Respuesta aceptada
Joseph Wilson
el 22 de Dic. de 2020
string1 = '00101';
digit_change = randi(length(string1));
digit_val = str2num(string1(digit_change));
digit_new = num2str(~digit_val);
string1(digit_change)=digit_new;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!