<?php
$seoproducttitle = 'Apple MacBook Air MacBook Air - 13.3 inch - Intel Core i5-8e - MRE82N/A';
echo preg_replace('/(^| )(.{4,}) (.*)\2/', "$1$2 $3", $seoproducttitle) . "\n";
preg_match_all('/(^| )(.{4,}) (.*)\2/', $seoproducttitle, $matches);
print_r(array_map(function ($v) { return "'$v'"; }, $matches[2]));
$seoproducttitle = 'HP Chromebook 11 G5 EE Chromebook - 11.6 inch - Intel® Intel® Celeron® - 4LT18EA#ABH 4LT18EA#ABH';
echo preg_replace('/(^| )(.{4,}) (.*)\2/', "$1$2 $3", $seoproducttitle) . "\n";
preg_match_all('/(^| )(.{4,}) (.*)\2/', $seoproducttitle, $matches);
print_r(array_map(function ($v) { return "'$v'"; }, $matches[2]));
- Output for 5.6.38, 7.0.33, 7.1.25 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- Apple MacBook Air - 13.3 inch - Intel Core i5-8e - MRE82N/A
Array
(
[0] => 'MacBook Air'
)
HP Chromebook 11 G5 EE - 11.6 inch - Intel® Celeron® - 4LT18EA#ABH
Array
(
[0] => 'Chromebook'
[1] => 'Intel®'
[2] => '4LT18EA#ABH'
)
preferences:
138.94 ms | 408 KiB | 5 Q