Jump to content

[SOLVED] How To Separate String


refiking

Recommended Posts

By explode function Or split.

 

$result = "one-two-three-four-five";
$result = explode("-",$result);
$result[0]; /will print one
$result[1]; /will print two
$result[2]; /will print three
$result[3]; /will print four
$result[4]; /will print five

 

hope this helps.

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.