regexprep with multiple expression
显示 更早的评论
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.
回答(2 个)
Daniel Shub
2012-8-24
Is this what you want?
ttxt = 'hello parish world borough foo census area bar';
regexprep(ttxt, ' parish| borough| census area','')
Pete sherer
2012-8-24
0 个投票
1 个评论
Azzi Abdelmalek
2012-8-24
this is not an answer. if you are satisfied, you have to click on "accept answer"
类别
在 帮助中心 和 File Exchange 中查找有关 App Building 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!