Skip to content

Instantly share code, notes, and snippets.

@glaphire
Last active August 29, 2019 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glaphire/190ad6aaa83eebcba97ec5d356df8533 to your computer and use it in GitHub Desktop.
Save glaphire/190ad6aaa83eebcba97ec5d356df8533 to your computer and use it in GitHub Desktop.
<?php
$text = "Новинка
Потрясающие платья
Большие Размеры 50 52 54 56 58 60
Цена 600р
В наличии на 24-118 и 22-106
БРЕНД By Raheem
У нас ткань этой модели точь в точь как на фото и цвета
#Параметрыплатье3яруса:
Ткань Лакоста тянется, очень хорошое качество ткани на Лето дышащий
Качество пошив очень хороший
Размер в размер идут
Платье тропеция свободного кроя
Обхват груди:
50 размер - 102см
52 размер - 106см
54 размер - 110см
56 размер - 114см
58 размер - 118см
60 размер - 122см
Длина платье:
50 размер - 103см
52 размер - 103см
54 размер - 105см
56 размер - 105см
58 размер - 106см
60 размер - 106см";
preg_match_all('/[Цц][Ее][Нн][Аа](\s*)[ |:|-|=|—](\s*)([0-9]+)[A-Z|a-z|А-Я|а-я| |₽]/u', $text, $output_array);
var_dump($output_array);
//Output
/*
$ php ~/.PhpStorm2019.1/config/scratches/scratch_16.php
array(4) {
[0]=>
array(1) {
[0]=>
string(15) "Цена 600р"
}
[1]=>
array(1) {
[0]=>
string(1) " "
}
[2]=>
array(1) {
[0]=>
string(0) ""
}
[3]=>
array(1) {
[0]=>
string(3) "600"
}
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment