If Regexp matches return 1 otherwise 0 syntax

조회 수: 44 (최근 30일)
Michael
Michael 2013년 3월 25일
댓글: gwoo 2025년 12월 18일 14:35
Hi,
Right now I'm using the following to get a boolean result from a regexp. It just doesn't feel right - is there a better way to do this?
(size(regexp(myInput,myPattern),1)>0)

채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 25일
if regexp(myInput,myPattern)
regexp() by default returns a list of indices upon a match, and [] if there are no matches. The list of indices will all be non-zero numbers, and "if" applied to an array of non-zero numbers is considered to be true, just as if all() had been applied to the list. "if" applied to the empty matrix is false. So, you do not need to do any conversion: you can just test regexp() result directly.
  댓글 수: 3
Walter Roberson
Walter Roberson 2013년 3월 25일
편집: Walter Roberson 2013년 3월 25일
~isempty(regexp('aa00aa00', '\d+')) && 1
or
any(regexp('aa00aa00', '\d+')) && 1
Note: all() instead of any() will not work.
Michael
Michael 2013년 3월 25일
Thanks

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

추가 답변 (4개)

gwoo
gwoo 2021년 8월 23일
편집: gwoo 2023년 2월 8일
If your input to regex is a cell array (say from collecting from a struct or something), then your output will be a cell array which is not immediately able to be used for logical indexing. You need to convert it from a cell array to a logical array. But many times you'll get empty cells so you can't just use cell2mat because that will implicitly ditch the empty cells and only leave you with the non-empty which doesn't help for indexing. Therefore, I use this following approach to go from an input of a cell array to an output of a logical array.
This is how I get a logical array out of regex:
logicalMatches = ~cellfun('isempty', regexpi({filesInDir.name}, stringToBeFound, 'once'));
  댓글 수: 1
James Van Zandt
James Van Zandt 2022년 5월 12일
I have a cell array of strings to test, so I used this method to collect the matches.
K>> ca={'able','baker','charlie','delta','echo','fox','golf','hotel'}
ca =
1×8 cell array
{'able'} {'baker'} {'charlie'} {'delta'} {'echo'} {'fox'} {'golf'} {'hotel'}
K>> regexp(ca,'a')
ans =
1×8 cell array
{[1]} {[2]} {[3]} {[5]} {0×0 double} {0×0 double} {0×0 double} {0×0 double}
K>> ~cellfun('isempty',regexp(ca,'a'))
ans =
1×8 logical array
1 1 1 1 0 0 0 0

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


Sean de Wolski
Sean de Wolski 2013년 3월 25일

Dani A
Dani A 2025년 12월 17일 20:01
편집: Dani A 2025년 12월 17일 20:23
a more modern solution:
% for reproducibility
rng(0);
% 10 strings
strSize = [10 1];
% 10 characters in each string
numChars = 10;
% only lowercase Latin characters
unicodeBnds = [97 122];
%
myInput = arrayfun(@(a) string(char(randi(unicodeBnds,[1 numChars]))),ones(strSize))
myInput = 10×1 string array
"vxdxqchoyz" "ezymudkxuy" "rawyrttkre" "sahbcvsiya" "ljtuemlqst" "hrredmyipf" "tgnsxyoddg" "vgvgyjfgqm" "jvpoxhttjo" "bbnuydomai"
myPattern = "[abc]";
contains(myInput,regexpPattern(myPattern))
ans = 10×1 logical array
1 0 1 1 0 0 0 0 0 1
  댓글 수: 4
Dani A
Dani A 2025년 12월 17일 22:31
편집: Dani A 2025년 12월 17일 22:31
@gwoo if `myInput` is a properly formatted cell string, then my solution should work. I suspect that you had a cell array of 1-by-1 strings, rather than a cell array of character vectors.
% for reproducibility
rng(0);
% 10 strings
cellSize = [10 1];
% 10 characters in each string
numChars = 10;
% only lowercase Latin characters
unicodeBnds = [97 122];
%
myInput = cellfun(@(c) char(randi(unicodeBnds,[1 numChars])),repmat({1},cellSize),'UniformOutput',false)
myInput = 10×1 cell array
{'vxdxqchoyz'} {'ezymudkxuy'} {'rawyrttkre'} {'sahbcvsiya'} {'ljtuemlqst'} {'hrredmyipf'} {'tgnsxyoddg'} {'vgvgyjfgqm'} {'jvpoxhttjo'} {'bbnuydomai'}
myPattern = '[abc]';
contains(myInput,regexpPattern(myPattern))
ans = 10×1 logical array
1 0 1 1 0 0 0 0 0 1
gwoo
gwoo 대략 9시간 전
@Walter Roberson yes that's a good point.
@Dani A wasn't even thinking of that. thank you!

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


Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 25일
Maybe you want to use isequal or strcmp

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by