regexprep with multiple expression
    1 view (last 30 days)
  
       Show older comments
    
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.
0 Comments
Answers (2)
  Daniel Shub
      
      
 on 24 Aug 2012
        Is this what you want?
ttxt = 'hello parish world borough foo census area bar';
regexprep(ttxt, ' parish| borough| census area','')
0 Comments
  Pete sherer
 on 24 Aug 2012
        1 Comment
  Azzi Abdelmalek
      
      
 on 24 Aug 2012
				this is not an answer. if you are satisfied, you have to click on "accept answer"
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

