Here is the code. You need to parse the contents of the ul tag. Sample text:
<h2 class="cut-top">Рекомендації</h2> <ul> <li>Костенко Евгения<br>HR-менеджер, Sicore, 099-121-15-10</li> </ul> <hr> (?:<ul>)(\n.*\n)(?:<\/ul>) - it doesn't work for some reason
#include <Array.au3> $linkRead = BinaryToString(InetRead("https://www.work.ua/ua/resumes/3135656/", 17), 4) $re = '/(?:<ul>)(.*)(?:<\/ul>)/s'; $recomendationTxt = StringRegExp($linkRead, $re, 3) _ArrayDisplay($recomendationTxt)#include <Array.au3> $linkRead = BinaryToString(InetRead("https://www.work.ua/ua/resumes/3135656/", 17), 4) $re = '/(?:<ul>)(.*)(?:<\/ul>)/s'; $recomendationTxt = StringRegExp($linkRead, $re, 3) _ArrayDisplay($recomendationTxt)piece of code that does not work. Autoit language. - Only Me