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 Link to comment https://forums.phpfreaks.com/topic/197687-separating-text/ 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. Link to comment https://forums.phpfreaks.com/topic/197687-separating-text/#findComment-1039450 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.