Naming convetion of regex,lookahead and lookbehind
- by user198729
Why is it counter intuitive?
/(?<!\d)\d{8}(?!\d)/,here (?<!\d) comes first,but called lookbehind,(?!\d) next,but called lookahead.All are counter intuitive.
What's the reason to name it this way?