PHP : Extract part of a string starting from the middle
Extracting part of the string is a fairly common task in programming and sometimes it can be a bit challenging to extract string starting from a middle of a larger string.
To illustrate the problem here. Let say your :
Problem :
You have a string that looks like this :
expires Friday, December 23, 2014 @ 11:59pm
and you want to final string result to be like :
Friday, December 23, 2014
Solutions :
First solution :
Use substr(), strlen() and strpos() functions
$string = "expires Friday, December 23, 2014 @ 11:59pm";
$final = substr($string, 14, strpos($string, '@') - strlen($string));
Second solution :
Which is more efficient, but less simpler to grasp for those not familiar with regular expression
$string = "expires Friday, December 23, 2014 @ 11:59pm";
$final = preg_replace('/expires\s*(.*?)@/', '\1', $string);
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.2k Golang : What is StructTag and how to get StructTag's value?
+13.5k Golang : Gin framework accept query string by post request example
+15.7k Golang : How to reverse elements order in map ?
+18.8k Golang : Clearing slice
+19.3k Golang : How to Set or Add Header http.ResponseWriter?
+7.5k Golang : How to execute code at certain day, hour and minute?
+29k Golang : JQuery AJAX post data to server and send data back to client example
+12.8k Golang : List objects in AWS S3 bucket
+24.8k Golang : Generate MD5 checksum of a file
+9.9k Golang : Check a web page existence with HEAD request example
+8.5k Golang : On lambda, anonymous, inline functions and function literals
+5.5k Fix yum-complete-transaction error