Removing specific characters in a string?

308 visualizaciones (últimos 30 días)
Nikhil Bhatia
Nikhil Bhatia el 6 de Oct. de 2012
Comentada: Olcay el 12 de Feb. de 2023
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 comentarios
Walter Roberson
Walter Roberson el 6 de Oct. de 2012
What about upper case characters?
Olcay
Olcay el 12 de Feb. de 2023
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'

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 6 de Oct. de 2012
Editada: Azzi Abdelmalek el 6 de Oct. de 2012
s='picture' % Example
s(regexp(s,'[t,i,x,y]'))=[]
  3 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 6 de Oct. de 2012
s(regexp(s,'[tixy]'))=[]
Paul Safier
Paul Safier el 23 de Jun. de 2022
Great solution, thanks.

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 6 de Oct. de 2012
Hint #1: ismember()
Hint #2: logical indexing
  2 comentarios
Nikhil Bhatia
Nikhil Bhatia el 6 de Oct. de 2012
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 el 6 de Oct. de 2012
Editada: Walter Roberson el 24 de Jun. de 2022
Consider
s == 't' | s == 'i' | s == 'x' | s == 'y'

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by