好的,所以我有一个字符串 $title_string ,它可能看起来像以下任何一种:
$title_string = "20.08.12 First Test Event";
$title_string = "First Test event 20/08/12";
$title_string = "First Test 20.08.2012 Event";
我需要以两个变量结束:
$title = "First Test Event";
$date = "20.08.12";
无论最初是什么,日期的格式都应转换为句号。
我开始使用的 Regex 字符串看起来像这样:
$regex = ".*(\d+\.\d+.\d+).*";
但我不能让它以我需要的方式工作。所以总而言之,我需要在字符串中找到一个日期,将其从字符串中删除并正确格式化。干杯。