I am trying to split a string into terms in PHP using preg_split. I need to extract normal words ( \w ) but also currency ( even currency symbol ) and numeric terms ( including commas and decimal points ). Can anyone help me out, as I cannot seem to create a valid regex to use for preg_split to achieve this. Thanks
|
feedback
|
|
Why not use
| |||||||||
feedback
|
|
What about Big brown fox - $20.25 will return
| ||||
|
feedback
|
|
Does it solve your problem to split on whitespace? | |||
|
feedback
|
/.+/or are these in the of a string you need filtered? I don't understand what you are trying to split still. – Biotox Jan 6 at 23:31