regexprep with multiple expression

12 次查看(过去 30 天)
Pete sherer
Pete sherer 2012-8-24
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
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
Pete sherer 2012-8-24
Yes. Thanks
  1 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2012-8-24
this is not an answer. if you are satisfied, you have to click on "accept answer"

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by