Jump to content

string split loop


point86

Recommended Posts

Hi,

 

I have a string, "$string1" the contents of which is, say, "ARTWISKXJAMAKFPXIO"

 

Now I need a loop that reads through the string, and after every two characters, makes a space.

 

Thus, the resultant output will be $string1afterwards = "AR TW IS KX JA MA KF PX IO"

 

Any ideas?

 

Thanks

 

P86.

Link to comment
Share on other sites

You may be able to simplify this a little. but the basic idea is there.

 

$string1 = "ARTWISKXJAMAKFPXIO";
$newstring= "";
$i =0;
while ($i < strlen($string1))
{
//echo substr($string1, $
$newstring .= substr($string1,$i,2);
$newstring .= " ";
$i +=2 ;
echo "$i <br>";
}

echo $newstring;

Link to comment
Share on other sites

Ok thanks, this works fine: I've split the string successfully.

 

Now if the string was made up of ASCII characters (eg 66 67 68 69), how do I get the system to convert these into normal character values (eg B C D E)?

 

Thanks

 

P86.

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.