Removing specific characters in a string?

310 次查看(过去 30 天)
Im having difficulty in deleting pre-specified characters from any given string. The characters that i am tryin to eliminate are 't' 'i' 'x' 'y'
I need a lot of help creating a function that would do this for any given string.
for example
modstr('picture') should return ans = ('pcure')
or
modstr('alex') should return ans = ('ale')
I would appreciate any help or hints regarding this since i've been working on this for literally 6 hours now.
Thank You.
  2 个评论
Olcay
Olcay 2023-2-12
str = 'The quick brown fox jumped over the lazy dog';
unwanted = 'tixy';
str(~ismember(str, unwanted))
ans = 'The quck brown fo jumped over he laz dog'

请先登录,再进行评论。

采纳的回答

Matt Fig
Matt Fig 2012-10-6
str = 'The quick brown fox jumped over the lazy dog';
strn = regexprep(str,'[tixy]','')

更多回答(2 个)

Azzi Abdelmalek
Azzi Abdelmalek 2012-10-6
编辑:Azzi Abdelmalek 2012-10-6
s='picture' % Example
s(regexp(s,'[t,i,x,y]'))=[]

Walter Roberson
Walter Roberson 2012-10-6
Hint #1: ismember()
Hint #2: logical indexing
  2 个评论
Nikhil Bhatia
Nikhil Bhatia 2012-10-6
im sorry but i have only been working with matlab for the past 2 days ... could you please explain a little further?
Walter Roberson
Walter Roberson 2012-10-6
编辑:Walter Roberson 2022-6-24
Consider
s == 't' | s == 'i' | s == 'x' | s == 'y'

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by