I need a regular expression that matches UTF-8 letters and digits, the dash sign (-) but doesn't match underscores (_), I tried these silly attempts without success:

  • ([\w-^_])+
  • ([\w^_]-?)+
  • (\w[^_]-?)+

The \w is shorthand for [A-Za-z0-9_], but it also matches UTF-8 chars if I have the u modifier set.

Can anyone help me out with this one?

link|improve this question

1  
Please be specific about "UTF-8 letters" - can you confirm you want not just English characters? – meder Jan 14 '10 at 4:35
@meder: I want English and accented / foreign characters. – Alix Axel Jan 14 '10 at 4:48
feedback

2 Answers

up vote 8 down vote accepted

Try this:

(?:[\w\-](?<!_))+

It does a simple match on anything that is encoded as a \w (or a dash) and then has a zero-width lookbehind that ensures that the character that was just matched is not a underbar.

Otherwise you could pick this one:

(?:[^_\W]|-)+

which is a more set-based approach (note the uppercase P)

OK, I had a lot of fun with unicode in php's flavor of PCREs :D Peekaboo says there is a simple solution available:

[\p{L}\p{N}\-]+

\p{L} matches anything unicode that qualifies as a Letter (note: not a word character, thus no underbars), while \p{N} matches anything that looks like a number (including roman numerals and more exotic things).
\- is just an escaped dash. Although not strictly necessary, I tend to make it a point to escape dashes in character classes... Note, that there are dozens of different dashes in unicode, thus giving rise to the following version:

[\p{L}\p{N}\p{Pd}]+

Where "Pd" is Punctuation Dash, including, but not limited to our minus-dash-thingy. (Note, again no underbar here).

link|improve this answer
Good one, thanks! – Alix Axel Jan 14 '10 at 4:51
will negating \W not include hypen ? – codaddict Jan 14 '10 at 5:02
@dionadar - this doesn't match accented characters for me. – meder Jan 14 '10 at 5:09
1  
@codadict As far as I know, the hyphen is not included in \w - and even if it was, it would not hurt to state it like this ;) – dionadar Jan 14 '10 at 5:12
1  
\p{N} includes all kinds of numbers - afaik Nd does the 0-9 dance, while Nl includes roman literals (in unicode a roman 1 is not the letter I, but rather something that looks like it) and No is pretty much everything they could not find in the other two, but still is a number. – dionadar Jan 14 '10 at 6:19
show 9 more comments
feedback

I am not sure which language you use, but in PERL you can simply write: [[:alnum:]-]+ when the correct locale is set.

link|improve this answer
That's nice to know, but I'm using PHP (PCRE engine). – Alix Axel Jan 14 '10 at 5:34
Tried it in PHP and Rubular (Ruby), see rubular.com/regexes/12922 and rubular.com/regexes/12923. – Alix Axel Jan 14 '10 at 5:39
I've corrected a small mistake there. – Jiri Klouda Jan 14 '10 at 5:54
1  
[:alnum:] could be replaced with \p{IsAlnum} in PCRE you could try \p{L}\p{N} – Jiri Klouda Jan 14 '10 at 6:04
feedback

Your Answer

 
or
required, but never shown

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