I tried using this pattern
^[A-z]*[A-z,-, ]*[A-z]*
To match against a string that starts with multiple alpha characters (a-z) followed by multiple hyphens or spaces and ends with alpha characters, eg:
Azasdas- - sa-as
But it does not work.
|
Try
Also, you should not be using A-z because this will include unintended characters from ASCII range 91 to 96. See this table |
|||||
|
|
|
Don't use ',' (comma)
|
|||||
|
|
You don't want the commas, in a character range you also need to specify You need something closer to this:
Depending on how you actually want to break things up. Without knowing the context behind the "chunks", it may or may not just be easier to split it apart on hyphens. Edit Actually, it's more like:
This is a word, followed by arbitrary spaces and hyphens, followed by a word that may contain a hyphen. |
|||||||||||
|
|
The currently accepted answer (
By grouping the |
|||
|
|
?in them. It's nice that you're sharing a regex that doesn't work, but this isn't a place for sharing broken code. Most people will ask a question as to why it's broken and "could you help?" type thing. – Marc B Oct 23 '11 at 16:07