acctman Posted April 5, 2010 Share Posted April 5, 2010 I need help with a piece of coding that will separate text with the first separation first word will be after the Comma then always 2 letters followed by a Space the a set of numbers/letters original text: New York, NY 10011 processed: New York NY 10011 this set separate is by a Comma original text: LONDON, 17 processed: LONDON 17 Quote Link to comment Share on other sites More sharing options...
solon Posted April 9, 2010 Share Posted April 9, 2010 Using php this would go like this: $original= "New York, NY 10011"; $after = explode(",",$original); //seperate by comma echo $after[0]; //will give you New York echo $after[1]; //will give you NY 10011 Since you want to get the second one seperated as well you should do: $again = explode(" ",$after[2]); //seperate by space For your second set use the same as the first one you see above. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.