简体   繁体   中英

match date from string php preg_match

I have a string:

$string = "Created on: 06-Sep-08";

I would like to match the date and convert it to 06/09/2008; what is the needed regexp?
Thanks

$matches = array();
preg_match('/(\d{2})-(\D*)-(\d{2})/', $string, $matches)

This returns the array matches.

$matches[0] will contain the text that matched the full pattern, $matches[1] will have the text that matched the first captured parenthesized subpattern, and so on

http://php.net/manual/en/function.preg-match.php

preg_match('/\:.*/is',...);

And then do a

strtotime(...)

EDIT:

Forgot to add the parantheses

preg_match('/\:(.*)/is',$string,$matches);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM