Looking for some help!

I need to split a string at the last occurrence of a space...

e.g. "Great Neck NY" I need to split it so I have "Great Neck" and "NY"

I haven't had a problem using preg_split with basic stuff but I'm stumped trying to figure out how to tell it only to split at the last occurrence! Any help would be appreciated!

Mike

link|improve this question

1  
If you run Windows, and you're not using it already, you should grab regex-coach to easily test/build your regex's. – Greg K Mar 16 '10 at 16:16
feedback

1 Answer

up vote 5 down vote accepted

You could use a lookahead assertion:

preg_split('/\s+(?=\S+$)/', $str)

Now the string will be split at \s+ (whitespace characters) only if (?=\S+$) would match from this point on. And \S+$ matches non-whitespace characters immediately at the end of the string.

link|improve this answer
+1 Nice one! Been looking for something like this myself for a long time too. – fireeyedboy Mar 16 '10 at 16:17
+1 for a simple answer with clear & appropriate reference – Peter Oct 16 '11 at 13:33
feedback

Your Answer

 
or
required, but never shown

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