regexp help when comparing strings

조회 수: 17 (최근 30일)
Jagath Gamage
Jagath Gamage 2019년 12월 9일
편집: Stephen23 2019년 12월 9일
Hi, I am having trouble with regexp. Why the following expresseion returns empty array ?
regexpi ('a4126643_farfield_(f=2.4)','a4126643_farfield_(f=2.4)')
ans =
[]
Strings which are compared are identical.

채택된 답변

Stephen23
Stephen23 2019년 12월 9일
편집: Stephen23 2019년 12월 9일
"Strings which are compared are identical"
In general regular expressions are NOT used to compare identical strings (although in some specific circumstances they can do that). If you want to compare identical strings, then use the correct tool: strcmp, strncmp, strcmpi, strncmpi, strfind, contains, ismember, etc..
Regular expressions are not supposed to be identical to the parse string, they are a language that describes pattern matching. If you want to know how to write your own regular expressions, then you will have to read the documentation... and then read it again... and again... and again... (because they are not a trivial language to learn, very powerful certainly, but not trivial):
"Why the following expresseion returns empty array ?"
Because you did not write a regular expression that matches that parse string. Once you read the documentation carefully and escape the active characters, you will get the "expected" output (the start index of the matched string):
>> regexpi ('a4126643_farfield_(f=2.4)','a4126643_farfield_(f=2.4)') % your identical strings
ans = []
>> regexpi ('a4126643_farfield_(f=2.4)','a4126643_farfield_\(f=2\.4\)') % regular expression
ans = 1
You could also escape the active characters using regexptranslate:
A strict "identical" match would also require anchors for the start and end of the text: '^...$'

추가 답변 (1개)

Chuguang Pan
Chuguang Pan 2019년 12월 9일
The function regexpi needs the second argument expression must be a regular expression!
About what is regular expression, you can refer to documentation.

카테고리

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