regexprep with multiple expression
Mostra commenti meno recenti
Hi,
Is there a way to consolidate these regexprep into one expression? regexprep(ttxt, ' parish',''); regexprep(ttxt, ' borough',''); regexprep(ttxt, ' census area','');
ttxt is a cell array.
Thanks.
Risposte (2)
Daniel Shub
il 24 Ago 2012
Is this what you want?
ttxt = 'hello parish world borough foo census area bar';
regexprep(ttxt, ' parish| borough| census area','')
Pete sherer
il 24 Ago 2012
0 voti
1 Commento
Azzi Abdelmalek
il 24 Ago 2012
this is not an answer. if you are satisfied, you have to click on "accept answer"
Categorie
Scopri di più su App Building in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!