chop() : remove string from right end

$string='Welcome to plus2net.com';
echo chop($string,'.com');
output
Welcome to plus2net
WE can remove white space at the end of the string .
echo chop("welcome to plus2net  ");
Output
welcome to plus2net
To indentify the removal of white space we will add one more string and check like this.
$str="Welcome to plus2net  ";
//echo $str;
echo chop($str);
echo "Thanks";
The output is here
Welcome to plus2netThanks
In the above code we can check the difference by un-commenting 2nd line and adding the comment to third line. We will see the gap before the word Thanks
Welcome to plus2net Thanks
Other than white space we can also remove these .
"\0"-ASCII 0, null
"\t" Tab
"\r" carriage return
"\n" new line
"\x0B" vertical tab
" " white space

String Functions chunk_split(): Split a string into smaller chunks
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com







    Post your comments , suggestion , error , requirements etc here





    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer