how to judge some bytes is or not a-z,A-Z?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i read some files using fread ,then some bytes display like blank , but there is sth.,i want to delete these special chars ,how to make it ? thanks
0 commentaires
Réponse acceptée
Mischa Kim
le 27 Juin 2014
Modifié(e) : Mischa Kim
le 27 Juin 2014
Roger, use regular expressions, something like
str = 'a b{}c1230O /&" â'
str =
a b{}c1230O /&" â
str_rep = regexprep(str,'[^a-zA-Z0-9]','')
str_rep =
abc1230O
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur File Operations 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!