Here's the problem.
I'm using pythons re-functions.
I'm supposed to make a re-function to check if a string
ends with 3 numbers(or more) before the extension.(e.g. 123.txt, 93821.ini)
Here's my code that's supposed to do the magic
re.search('[0-9][0-9][0-9]\.','1234.txt')
now, this doesn't work out. And I have no clue why not.
I reccon it's the "\." that doesn't work properly since;
re.search('[0-9][0-9][0-9]_','1234_txt')
works perfectly.