Effacer les filtres
Effacer les filtres

How to remove unnecessary character from a string

7 vues (au cours des 30 derniers jours)
Anudeep
Anudeep le 9 Avr 2020
Commenté : Ameer Hamza le 9 Avr 2020
I have a string,
'This may be our situation. It is similarly fantastical to expect people who cannot afford food\xc2\xa0\xe2\x80\x94 as will soon be the case for many more\xc2\xa0\xe2\x80\x94 to practice personal hygiene. You can\xe2\x80\x99t eat soap. If you are starving, you won\xe2\x80\x99t buy it.'
I have to remove the unnecessary string like, '\xc2\xa0\xe2\x80\x94' from the string. The patter which I can observe is this unnecessary string starts with '\' and ends with a number.
Thanks so much for the help.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 9 Avr 2020
str = ['This may be our situation. It is similarly fantastical to ' ...
'expect people who cannot afford food\xc2\xa0\xe2\x80\x94 as will ' ...
'soon be the case for many more\xc2\xa0\xe2\x80\x94 to practice ' ...
'personal hygiene. You can\xe2\x80\x99t eat soap. If you are starving, ' ...
'you won\xe2\x80\x99t buy it.'];
new_str = regexprep(str, '\\[a-z0-9]{3}', '');
  2 commentaires
Anudeep
Anudeep le 9 Avr 2020
This worked for me. Thanks Ameer.
Ameer Hamza
Ameer Hamza le 9 Avr 2020
Glad to be of help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by