im trying to create an expression that matches 11.11.11 but not 111.11.111 i'm using python
keyword = re.compile(r"[0-9]*[0-9]\.[0-9]*[0-9]\.[0-9]*[0-9]")
the date could be at the start/end of a sentence and not have a white space but a next line before/after. how would i account for both ? as it is this will pick up up 11.11.11 but also 111.11.11111 etc :(