How to delete the first or the first two characters in a string?
    94 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Philipp Mueller
 le 15 Mai 2020
  
    
    
    
    
    Réponse apportée : the cyclist
      
      
 le 28 Avr 2022
            Hello,
How can i delete the first two characters of this string? Thank you
string='W987';
0 commentaires
Réponse acceptée
Plus de réponses (1)
  the cyclist
      
      
 le 28 Avr 2022
        @KSSV's answer is accurate in your case, but will not work on the string "W987". The following will work for either a character array or a string:
c = 'W987';
eraseBetween(c,1,2)
s = "W987";
eraseBetween(s,1,2)
0 commentaires
Voir également
Catégories
				En savoir plus sur Characters and Strings 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!


