How can I isolate the numbers and words in a string?
So I have something like this:
11111111-test-title
I want to have:
11111111
...in one string and:
test-title
...in another.
$parts = explode('-', $string, 2);