quick question blocking .pw domain

killmasta93

Renowned Member
Aug 13, 2017
974
59
68
31
Hi,
I was wondering if someone could shed some light, Currently i want to block all .pw domains but not sure if putting in the regular express just the .pw would work?

Thank you
 
Hi,

you should be able to use the "test string" textfield to test if the respective regex matches what you want.
As the regex is put into start ^ and end $ anchors it needs to fully match, the following should work:
.+\.pw

This matches any character, at least one til (theoretically) infinity and then a literal dot and literal pw
 
  • Like
Reactions: killmasta93