Got site page. It has the following line
<div class="about"> <h3>Алиса</h3>
Need to get "Alice". How to do this with a regular expression?
Did the following: <div class="about"><h3>(.*)</h3>
Where:
(...) Grouping (group)
. Any character (dot character)
x Ignore spaces
\ s Space character (including tabulation)
But uvsoftium.ru does not want to determine ... Why?
Further actions I want to make through preg_match_all :
preg_match_all('#<div class="about"><h3>(.*)</h3>#x', $content[$i], $matches[$i][1], PREG_PATTERN_ORDER);
The result returns an empty array.