I have encountered this pattern
(\w+)
and from http://gskinner.com/RegExr/ site I understand that \w = match alpha-numeric characters and underscores, and + = match previous token 1 or more times (not exactly sure what that means).
How can I add the hyphen character to the list?
I tried (\w\-+) but it doesn't work, I don't get any match ...
HYPHEN-MINUS, and that U+2010 is the realHYPHENcharacter.