Effacer les filtres
Effacer les filtres

How to delete numbers from cell?

1 vue (au cours des 30 derniers jours)
Heidi Mäkitalo
Heidi Mäkitalo le 13 Juin 2019
Commenté : Heidi Mäkitalo le 13 Juin 2019
I have a cell array that contains the following lines:
'0,31:1.03 SPEED MEASURED 1 [rpm]'
'0,31:1.04 MOTOR SPEED [rpm]'
'0,31:1.08 MOTOR TORQUE [%]'
'0,31:25.04 TORQUE REF B [%]'
I want to use them as titles for figures, but without the numbers preceding the text. For a figure that plots the measured speed, for example, I would want to have a title like this: SPEED MEASURED 1 [rpm]. How can I go about doing this?

Réponse acceptée

Stephen23
Stephen23 le 13 Juin 2019
Modifié(e) : Stephen23 le 13 Juin 2019
Simpler with regexprep:
>> D = regexprep(C,'^\S+\s*','')
D =
'SPEED MEASURED 1 [rpm]'
'MOTOR SPEED [rpm]'
'MOTOR TORQUE [%]'
'TORQUE REF B [%]'
  1 commentaire
Heidi Mäkitalo
Heidi Mäkitalo le 13 Juin 2019
Thanks! I actually didn't know about this function, I've only heard of regexp before. Works well & looks neat!

Connectez-vous pour commenter.

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 13 Juin 2019
a = {'0,31:1.03 SPEED MEASURED 1 [rpm]'
'0,31:1.04 MOTOR SPEED [rpm]'
'0,31:1.08 MOTOR TORQUE [%]'
'0,31:25.04 TORQUE REF B [%]'};
regexp(a,'(?<=\d\.\d{2}\s+).*','match','once')
  1 commentaire
Heidi Mäkitalo
Heidi Mäkitalo le 13 Juin 2019
Thanks for the answer!

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by