Answers for "how to remove first char of a string"

5

java remove first character from string

String string = "Hello World";

//Remove first character
string.substring(1); //ello World

//Remove last character
string.substring(0, string.length()-1); //Hello Worl

//Remove first and last character
string.substring(1, string.length()-1); //ello Worl
Posted by: Guest on June-25-2020
0

remove first character from string

<?php
    $str = "geeks";
  
    // Or we can write ltrim($str, $str[0]);
    $str = ltrim($str, 'g');
  
    echo $str;
?>
Posted by: Guest on February-25-2022

Code answers related to "how to remove first char of a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language