Remove the very first character of a given string in PHP
Examples:
Input : Geeksforgeeks Output : eeksforgeeks Input :, Hello geek! Output : Hello geek!
Explanation:
In PHP to remove characters from beginning we can use ltrim but in that we have to define what we want to remove from a string i.e. removing characters are to be known.
Example:
<?php $str = "geeks" ; // Or we can write ltrim($str, $str[0]); $str = ltrim( $str , 'g' ); echo $str ; ?> |
eeks
If string is not known and we want to remove characters from beginning then we can use substr(). Here we can use it by two parameters one is the string and the other is the index. substr() return string from the second parameter index to the end of the string.
<?php $str = "geeks" ; $str1 = substr ( $str , 1); echo $str1 . "\n" ; $str1 = substr ( $str , 2); echo $str1 ; ?> |
eeks eks
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.