vote up 1 vote down star
1

I am having a trouble matching a string in a MySQL-query with the following regex:

I want it to match to this string: "Rue de l' Harmonie"

SELECT id, street_name FROM street_names WHERE street_name REGEXP '^(rue[a-z]+[[:blank:]])((du|de|la|des|d[\']|l[\'])[[:blank:]])*[[:<:]]HARMONIE$'

Anybody can give me a hint?

flag

2 Answers

vote up 2 vote down check

At the beginning:

^(rue[a-z]+

The + requires that there be at least one a-z char directly following rue. You probably want *.

link|flag
vote up 0 vote down

Thanks Adam!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.