s/will load/will not load/, right?
The .* is saying there can be any number of characters in the string between the first match (the character class) and the backreference (\1) match, from zero (two characters next to each other) on up...
Say out first match was 'a', then 'a' is also referred to in \1. Then we have a.*a: aa, a.a, a..a, a...a, a....a, etc. And its a negative lookahead, so if any one of those combinations matches, the regex will fail.
| [reply] [d/l] [select] |