Jump to content

Separating text...


acctman

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.