one two three four
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have two strings stored in a variable 
EG 
A='HELLO'
B='TEST'
I want to repeat B to make it the same length as A 
EG 
A='HELLOWORLD' 
B='TESTTESTTE'
3 commentaires
  Guillaume
      
      
 le 7 Nov 2019
				If Thorsten hadn't posted an answer, I was going to close the question as it's a duplicate of https://www.mathworks.com/matlabcentral/answers/489791-repeat-the-value-of-a-variable-to-match-the-length-of-another-variable
Please don't waste people time by asking the same question twice.
Réponse acceptée
  Thorsten
      
      
 le 7 Nov 2019
          Replicate B such that is is as long or longer than A, then cut it to the length of A;
B = repmat(B, 1, ceil(numel(A)/numel(B)));
B = B(1:numel(A));
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur String dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


