Help please write a regular expression, string:
"Фамилия</td><td>ВОТ ЭТО НАДО ВЫТАЩИТЬ</td>"
you need to pull out from the line the text "ВОТ ЭТО НАДО ВЫТАЩИТЬ"
"ВОТ ЭТО НАДО ВЫТАЩИТЬ"
At the same time, the "Фамилия</td><td>" and "</td>" parts are constant in all lines!
"Фамилия</td><td>"
"</td>"
preg_match_all('~Фамилия</td><td>(.*?)</td>~u', $text, $matches); // обратите внимание на ~u
or:
preg_match_all('~<td>(.*?)</td>~u', $text, $matches); // обратите внимание на ~u
/Фамилия<\/td><td>([\W]+)<\/td>/
preg_replace($preg, '$1', $str)
Source: https://ru.stackoverflow.com/questions/45630/More articles:JQuery drag and dropHow to read a GIF file byte?Difference of projects in Delphi XE and Delphi XE2Privacy settings when posting photos on FacebookTransfer HTML Table to ExcelChange variableWork with the customer [closed]The task of the piggy bank with coinsProgram updateConverting a number from hexadecimal to binaryAll Articles