Tools, FAQ, Tutorials:
Taking a Substring in PHP
How To Take a Substring from a Given String?
✍: FYIcenter.com
If you know the position of a substring in a given string, you can take the substring out by the substr() function. Here is a PHP script on how to use substr():
<?php $string = "beginning"; print("Position counted from left: ".substr($string,0,5)."\n"); print("Position counted form right: ".substr($string,-7,3)."\n"); ?>
This script will print:
Position counted from left: begin Position counted form right: gin
substr() can take negative starting position counted from the end of the string.
⇒ Replacing a Substring in PHP
⇐ Testing the strpos() Return Value in PHP
2016-10-13, 1921🔥, 0💬
Popular Posts:
How to use the "return-response" Policy statement to build the response from scratch for an Azure AP...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
How to build a test service operation to dump everything from the "context.Request" object in the re...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...