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!!

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.