Inserting one character many times into a string
Afficher commentaires plus anciens
I have a string with a bunch of words separated by commas
S='Apples,Oranges,January,February,...'
I get a vector with the placement of all the commas with
commas=strfind(s,',');
how do i place a character before every comma in the string, so it will come out like
Snew='Apples2,Oranges2,January2,February2,...'
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!