필터 지우기
필터 지우기

Proper use of regexprep

조회 수: 2 (최근 30일)
GEORGIOS BEKAS
GEORGIOS BEKAS 2018년 1월 22일
댓글: per isakson 2018년 12월 17일
I want to remove the consonants of a string, using regexprep. How can I modify the initial string s1 with a string s2?
s2 = regexprep(s1,'qwrtpsdfghjklzxcvbnmQWRTPSDFGHKLZXCVBNM','')
  댓글 수: 2
Guillaume
Guillaume 2018년 1월 22일
I don't understand the question. Your code already remove the consonants (assuming basic latin alphabet only). What more do you want?
per isakson
per isakson 2018년 12월 17일
Your statement is lacking the square brackets. Try
s2 = regexprep(s1,'[qwrtpsdfghjklzxcvbnmQWRTPSDFGHKLZXCVBNM]','')

댓글을 달려면 로그인하십시오.

채택된 답변

KL
KL 2018년 1월 22일
편집: KL 2018년 1월 22일
use the ^ operator. It should simply be,
s2 = regexprep(s1,'[^aeiou]','')
documentation explains it clearly here: https://de.mathworks.com/help/matlab/ref/regexprep.html
  댓글 수: 3
GEORGIOS BEKAS
GEORGIOS BEKAS 2018년 1월 22일
also it removes the spaces and the capital letters. :/
KL
KL 2018년 1월 22일
it removes every character except what you mention inside the square brackets following ^ sign.
s2 = regexprep(s1,'[^aeiouA-Z]','') %ignores capital letters (A-Z)
s2 = regexprep(s1,'[^aeiouA-Z\s]','') %ignores white spaces as well
I gave you the link to documentation. It explains much more and guess what, even with examples!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

the cyclist
the cyclist 2018년 1월 22일
편집: the cyclist 2018년 1월 22일
Can you just do
s1 = s2;
after that? Or just
s1 = regexprep(s1,'qwrtpsdfghjklzxcvbnmQWRTPSDFGHKLZXCVBNM','');
directly, eliminating creating the intermediate variable s2?

카테고리

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