Jump to content

[SOLVED] Splitting a string is splitting my head!


musclehead

Recommended Posts

Hi everyone,

 

I'm trying to split a text string based on a 10-digit integer. Here is an example string that I have:

 

1829378467This is some text1213873673this is some more text2328744673this is yet more text

 

I need to split the string based on those 10-digit integers and put the results into an array. The text I have is delimited and each resulting array value is in reverse chronological order. I want to then reverse the print-out of the array in order to display the array values in the correct chronological order. Here's what I've got now:

 

$str_array = split("/\d{10}/",$string);
print_r($str_array);

 

The print_r only displays one array element (0), and it contains the entire string. I'm assuming the split command is not recognizing the other 10-digit integers correctly. Any ideas?

 

Thanks!!

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.