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, ∼2715🔥, 0💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" ...
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...