Jump to content

[SOLVED] explode but keep the string?


Jessica

Recommended Posts

If I have the following string:
$str = "This is a bunch of strings. String One: Test. String Two: Test Two."

And I do this:
$strings = explode("String", $str);

The result is like this:
$strings[0] = "This is a bunch of Strings.";
$strings[1] = "One: Test.";
$strings[2] = "Two: Test Two.";

How would I keep the String on the front of the strings which have it. I can't just add String to the front of each line because the first entry does not have String on it.

Help?
Link to comment
https://forums.phpfreaks.com/topic/33016-solved-explode-but-keep-the-string/
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.