How to say remove "-1" from the end of a string if exists?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have array of strings that some of them have "-1" at the end. Like "sectioned-1".
How can I get rid of "-1" from the end of thos strings?
0 commentaires
Réponses (2)
Guillaume
le 29 Jan 2020
easiest way is probably with:
newarray = regexprep(yourstringarray, '-1$', '');
works with cell arrays of char vectors as well.
0 commentaires
Ajay Kumar
le 29 Jan 2020
Modifié(e) : Ajay Kumar
le 29 Jan 2020
play with positions. For eg:
S = 'sectioned-1';
S = S(1:end-2)
For an array, write this in a simple for loop.
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!