How to deleted Enter char

2 vues (au cours des 30 derniers jours)
Xiaoning.Wang
Xiaoning.Wang le 27 Nov 2020
Commenté : Xiaoning.Wang le 30 Nov 2020
a = '
'MOVABLE,ERASABLE,
MERGEABLE'
a(18) = '
' % there hava a Enter char
I want to delete the Enter Char.
the way ('\n' or 'r' or '\r\n' ) is error. so how to delete the Enter char

Réponse acceptée

Walter Roberson
Walter Roberson le 27 Nov 2020
a = regexprep(a, '[\r\n]', '')
or
a(ismember(a, [10 13])) = ''; %10 is newline, 13 is carriage return
  1 commentaire
Xiaoning.Wang
Xiaoning.Wang le 30 Nov 2020
I like the solution, Thank you Walter Roberson

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits


Version

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by