How to remove additional comma from string?
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
tdat = ["t1,t2,t3", "d2,d3,d4,"]'
How can I remove the extra comma delimiter from string above so result is
tdat = ["t1,t2,t3", "d2,d3,d4"]'
Thanks
1 commentaire
Rik
le 25 Août 2022
What have you tried? There are general purpose functions that can do this, as well as string specific functions.
Réponse acceptée
Stephen23
le 26 Août 2022
tdat = ["t1,t2,t3"; "d2,d3,d4,"]
tdat = regexprep(tdat,',+$','')
1 commentaire
Plus de réponses (1)
Image Analyst
le 25 Août 2022
tdat = ["t1,t2,t3", "d2,d3,d4,"]'
for k = 1 : numel(tdat)
if endsWith(tdat(k), ',')
strLength = length(char(tdat(k)));
tdat(k) = extractBefore(tdat(k), strLength)
end
end
tdat
0 commentaires
Voir également
Catégories
En savoir plus sur Matrices and Arrays 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!