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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.