Removing specific characters in a string?

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 件のコメント

Walter Roberson
Walter Roberson 2012 年 10 月 6 日
What about upper case characters?
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 日

4 投票

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 日

6 投票

s='picture' % Example
s(regexp(s,'[t,i,x,y]'))=[]

3 件のコメント

Matt Fig
Matt Fig 2012 年 10 月 6 日
This will replace commas too.
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 6 日
s(regexp(s,'[tixy]'))=[]
Paul Safier
Paul Safier 2022 年 6 月 23 日
Great solution, thanks.

サインインしてコメントする。

Walter Roberson
Walter Roberson 2012 年 10 月 6 日

1 投票

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'

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeCharacters and Strings についてさらに検索

質問済み:

2012 年 10 月 6 日

コメント済み:

2023 年 2 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by