w3resource

PHP Exercises: Convert the last 3 characters of a given string in upper case

PHP Basic Algorithm: Exercise-24 with Solution

Write a PHP program to convert the last 3 characters of a given string in upper case. If the length of the string has less than 3 then uppercase all the characters.

Sample Solution:

PHP Code :

<?php
// Define a function that modifies a string based on its length
function test($s) 
{
    // Check if the length of the string is less than 3
    return strlen($s) < 3 ? strtoupper($s) : substr($s, 0, strlen($s) - 3) . strtoupper(substr($s, strlen($s) - 3));
}

// Test the function with different strings
echo test("Python") . "\n";
echo test("Javascript") . "\n";
echo test("js") . "\n";
echo test("PHP") . "\n";
?>

Sample Output:

PytHON
JavascrIPT
JS
PHP

Visual Presentation:

PHP Basic Algorithm Exercises: Convert the last 3 characters of a given string in upper case.

Flowchart:

Flowchart: Convert the last 3 characters of a given string in upper case.

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP program to check if two given non-negative integers have the same last digit.
Next: Write a PHP program to create a new string which is n (non-negative integer) copies of a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.