Hmmm, four DIVs, near each other, each with a single alpha and
whitespace. May not be what you are trying to catch, but it's the only
real pattern I can see from that snippet.
rawbody T_4_DODGY_DIVS
m'<DIV>\s+\w</DIV>.{1,40}?<DIV>\s+\w</DIV>.{1,40}?<DIV>\s+\w</DIV>.
{1,40}?<DIV>\s+\w</DIV>'i
describe T_4_DODGY_DIVS Testing...
score T_4_DODGY_DIVS 0.01
Interesting, instead asking for the count, you are actually showing
it how many. Scaled up to 30 and adding space variations, it would
look like:
full MEGATAGS /<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]
\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-
Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%
A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\
$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?
[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>
\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?
<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.
{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</
DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?
</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]
\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-
Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%
A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\
$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?
[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>\s?[\$%A-Z0-9]\s?</DIV>.{1,40}?<DIV>
\s?[\$%A-Z0-9]\s?</DIV>/i
full FloatingTags3 /(?>>\s?[\$%A-Z0-9]\s?<.{,50}?){90}/is
full FloatingTags3 /(?>>\s?[\$%A-Z0-9]\s?<[^>]{,50}){90}/is
These didn't crash but didn't work either.
I'm a little confused as to why you're using (?>>...) instead of
(?:...)
Sorry for the confusion. If I understood all of this better, it
would not seem so disjointed. ?> is called an Atomic Group.
Another suggestion I don't understand yet myself.
body L_drug_float /(:?[PVLXVAC]\s){7}/
This is working and I can't figure out why. :)
Thanks everyone!!
Dan