Wednesday, July 3, 2024
HomeLanguagesPhpHow to get the last n characters of a PHP string?

How to get the last n characters of a PHP string?

Write a PHP program to get last n characters of a given string.

Examples:

Input : $str = "neveropen!"
        $n = 6 
Output : Geeks!

Input : $str = "neveropen!"
        $n = 9
Output : forGeeks!

Method 1: Tn this method, traverse the last N characters of the string and keep appending them in a new string.

Example:




<?php
  
$str = "neveropen!";
$n = 6;
  
// Starting index of the string
// where the new string begins
$start = strlen($str) - $n;
  
// New string
$str1 = '';
  
for ($x = $start; $x < strlen($str); $x++) {
      
    // Appending characters to the new string
    $str1 .= $str[$x];
}
  
// Print new string
echo $str1;
?>


Output:

Geeks!

Method 2: Another way to do this use inbuilt library function substr with parameters as the name of the string.

Example:




<?php
  
$str = "neveropen!";
$n = 6;
  
$start = strlen($str) - $n;
  
// substr returns the new string.
$str1 = substr($str, $start);
  
echo $str1;
?>


Output:

Geeks!

Note: In above example, $start can also take -N to create a sub-string of last n characters

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments