import re
str="Everyone loves Stack Overflow"
print(re.findall("[ESO][^.]",str))
I don't understand why [^.] does anything. I thought it only matches characters that are not characters - in other words: nothing! But the output is the following:
['Ev', 'St', 'Ov']
Can someone shed some light on this? It's impossible to search for something like [^.] on google, and pythondocs about regular expressions didn't help either.