Hello, and welcome to today's PHP lesson! We are going to unravel an intriguing challenge that will refine our skills in string manipulation. This lesson will place particular emphasis on loops
. Prepare yourself for an exciting adventure as we explore how to extract odd-indexed characters from each word in a sentence, but only if the word has an even number of characters. Sounds exciting? Let's dive in!
The task we'll be demonstrating is as follows: We will work with a string representing a sentence in which words are separated by spaces. Your challenge involves creating a PHP function that identifies the odd-indexed characters of words that have an even number of characters and then combines these characters into a single string, maintaining the order in which they appeared in the sentence.
Consider this example: "PHP8 programming language is versatile."
The word PHP8
has 4 characters (an even number), and we'll select the odd-indexed characters from this word, specifically, H
and 8
. Similarly, we'll select a
, g
, a
, and e
from language
, s
from is
, and e
, s
, t
, l
, and .
from versatile.
. We'll skip the word programming
because it has an odd length.
If our function is working correctly, it should return "H8agaesestl."
. Isn't it fascinating to see what we can extract from a simple sentence?
We will start by splitting the sentence into words using the explode
function. This will help us create an array containing all the words in the sentence.
php1<?php 2function solution($sentence) { 3 $words = explode(" ", $sentence); 4 // we will proceed progressively 5} 6?>
We now introduce loops
: an outer loop that iterates over every single word, and an if condition that verifies whether a word has an even length. We can determine this by checking whether the length of the word modulo 2 equals zero. If it does, the word has an even length!
php1<?php 2function solution($sentence) { 3 $words = explode(" ", $sentence); 4 5 foreach ($words as $word) { 6 if (strlen($word) % 2 == 0) { // check if the length of the word is even 7 // we are building up our solution gradually 8 } 9 } 10} 11?>
With our outer loop set, we're ready to implement our inner logic. We aim to iterate only over the odd-indexed characters in each word of even length. To accomplish this, we'll start from an index of 1 and increment by 2 each time. This method ensures we only select the characters at odd indexes.
We'll then append these characters to our result string, which will be returned as our final output.
php1<?php 2function solution($sentence) { 3 $words = explode(" ", $sentence); 4 5 $result = ""; 6 foreach ($words as $word) { 7 if (strlen($word) % 2 == 0) { // confirms if the length of the word is even 8 for ($i = 1; $i < strlen($word); $i += 2) { // loop over odd-indexed characters 9 $result .= $word[$i]; 10 } 11 } 12 } 13 return $result; 14} 15 16echo solution("PHP8 programming language is versatile."); 17?>
Well done! You've successfully navigated the realms of loops
to extract specific characters from words within a sentence. You've learned how to analyze a sentence by breaking it down into its constituent words and studying each word at a deeper level. Now, use this knowledge as a solid foundation in your further exploration of loops and string manipulations. The key to mastering this topic is practice; the more you apply what you've learned, the more concrete your understanding becomes. Are you excited to continue exploring loops, string manipulations, and the endless possibilities of PHP? Let's keep diving deeper!