Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I split a string at the first occurrence of - (minus sign) into two $vars with PHP?

I have found how to split on every "-" but, not only on the first occurrence.

example:

this - is - line - of whatever - is - relevant
$var1 = this
$var2 = is - line - of whatever - is - relevant

Note, also stripped the first "-" .

Thanks in advance for the help!

share|improve this question

2 Answers

It's very simple, using an extra paramater to explode that many people don't realize is there:

list($before, $after) = explode('-', $source, 2);

share|improve this answer
That is cool. So then I $fixed_string = str_replace("-", " ", $before); to get rid of the - ? – Jimbo Aug 18 '10 at 0:02
No, the first - will be removed as part of the explode() function. – staticsan Aug 18 '10 at 0:16
This worked perfectly for my needs. I was wondering that if I added a $middle then explode - source 3 ?? Would that work or should I use array[x] as mentioned by Brad? – Jimbo Aug 18 '10 at 0:31
Yes, it does! Thanks so much... – Jimbo Aug 18 '10 at 0:40
$array = explode('-', 'some-string', 1);

Then you could do $var1=$array[0] and $var2=$array[1].

share|improve this answer
Thank you, I just edited my question with more reqs, sorry. – Jimbo Aug 17 '10 at 23:59
Thanks Brad, this will also be useful. I appreciate your time. – Jimbo Aug 18 '10 at 0:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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