Skip to main content
added 197 characters in body
Source Link
Toto
  • 18.3k
  • 73
  • 33
  • 45

You have extra spaces in your regex:

<p class="BEBE">.* [^\x00-\x7F]+ .*</p>
#         here ___^    and   ___^

remove them:

<p class="BEBE">.*[^\x00-\x7F]+.*</p>

Screenshot:

enter image description here

enter image description here

You have extra spaces in your regex:

<p class="BEBE">.* [^\x00-\x7F]+ .*</p>
#         here ___^    and   ___^

remove them:

<p class="BEBE">.*[^\x00-\x7F]+.*</p>

You have extra spaces in your regex:

<p class="BEBE">.* [^\x00-\x7F]+ .*</p>
#         here ___^    and   ___^

remove them:

<p class="BEBE">.*[^\x00-\x7F]+.*</p>

Screenshot:

enter image description here

enter image description here

Source Link
Toto
  • 18.3k
  • 73
  • 33
  • 45

You have extra spaces in your regex:

<p class="BEBE">.* [^\x00-\x7F]+ .*</p>
#         here ___^    and   ___^

remove them:

<p class="BEBE">.*[^\x00-\x7F]+.*</p>