Based: PERL SYNTAX REGEX
Invalid regular expression.
Please change something in this regex to detect the entire text with the tags.
<br>под звучащие аккорды и в котором нам тепл</br><br>помог \ емерово.<br>
(?<=<br>)[^\\\[\]\{\}]*?(?=(</br>|<br>))
The problem occurred because the text occurs: \
----------------------------------------------------------------------------------------------------------------------------------------------------
Invalid regular expression. The problem occured because the text occurs :
<br>[^\:]+<br>
<br>под звучащие: аккорды и в котором нам : тепл</br><br>помог \ емерово.<br>
<br>Here can include all letters, numbers, all characters, unicode, everything<b><b>Here can include all letters, numbers, all characters, unicode, everything<br></br><br>Here can include all letters, numbers, all characters, unicode, everything<b><b>Here can include all letters, numbers, all characters, unicode, everything</br>
So I want to detect everything between these tags and only the tags and <b><b> or <b></br>
Understand?