Jump to content

Count characters of words in an array


Rahul Dev

Recommended Posts

<?php

 

$title = "This is an example of a sentence in a paragraph";

$title_array = explode(" ", $title);

 

$count = strlen($title_array[0]);

?>

what i want to do is store the count for every characters of every word in the array using a loop

e.g the count will be stored in a variable $chr_count then when i access the count for "This" it should be like this $chr_count[0]=4, $char_count[1]=2 etc.

Link to comment
Share on other sites

It's late and I'm tired so hopefully I did this right. I think this is what you mean.

 

$title = "This is an example of a sentence in a paragraph";

$title_array = explode(" ", $title);

foreach($title_array as $value)
{
$count = strlen($value);
echo "The word has " . $count . " characters.<br />";
}

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.