this post was submitted on 08 Mar 2026
6 points (100.0% liked)
uBlockOrigin
96 readers
3 users here now
founded 9 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I don't write ublock filters but I suspect your \b boundary isn't matching for beginning of string.
You could probably do [\b^] which should match either a boundary or beginning of string.
[\b^]won't work — I assume you meant something like(\b|^). That shouldn't change anything either though, as\bis explicitly defined to match(^|$).