Filter a cell array with words

1 visualizzazione (ultimi 30 giorni)
AA
AA il 28 Lug 2019
Risposto: Walter Roberson il 28 Lug 2019
Hi,
assume you have the cell array{1,1} with a text called "XXXX-adsaads". I want the the portion -adsaads to be removed so that I only get XXXX. How can I do this?
  2 Commenti
Walter Roberson
Walter Roberson il 28 Lug 2019
Is the "adsaads" known ahead of time? Or are you wanting to find the part before the first - ? or are you wanting to find the part before the last - in cases where there are multiple - ?
AA
AA il 28 Lug 2019
the only thing that is known is that a four or three lettered wording comes before the "-" and after the "-" more words are coming. i want to FILTER out everything that comes after the "-".

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 28 Lug 2019
trimedcell = regexprep(YourCellArray, '-.*', '', 'once');

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by