Effacer les filtres
Effacer les filtres

regexp help when comparing strings

14 vues (au cours des 30 derniers jours)
Jagath Gamage
Jagath Gamage le 9 Déc 2019
Modifié(e) : Stephen23 le 9 Déc 2019
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.

Réponse acceptée

Stephen23
Stephen23 le 9 Déc 2019
Modifié(e) : Stephen23 le 9 Déc 2019
"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: '^...$'

Plus de réponses (1)

Chuguang Pan
Chuguang Pan le 9 Déc 2019
The function regexpi needs the second argument expression must be a regular expression!
About what is regular expression, you can refer to documentation.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by