Invalid regular expression

General discussion related to "Everything".
Post Reply
Debugger
Posts: 565
Joined: Thu Jan 26, 2017 11:56 am

Invalid regular expression

Post by Debugger »

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?
Post Reply