Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$pattern = '/([a-z]+?)(\d{2})(\d{2})/i';
preg_match($pattern, $input, $match);
//assuming $input contains the text to parse
$match[1] :the alpha stuff before the numbers
$match[2] :the first two numbers
$match[3] :the last two numbers.
preg_match('#com\/(.*?).htm#', $page_urls[$i], $matched_category20);
$matched_category200 = $matched_category20[1];
// --------------------
$search03 = array (
'#19#is'
);
$replace03 = array (
' 19'
);
$matched_category2 = preg_replace($search03, $replace03, $matched_category200);