I have a program like this :
import re
x='aaaaaaaa;aa;aaa;aaa;aaaaaaaaaa;'
x=re.sub(';','.',x, re.IGNORECASE)
print x
But the output is like this:
aaaaaaaa.aa.aaa;aaa;aaaaaaaaaa;
There are still some ; not replaced by a ., why ?
Using Python 2.6
;doesn't seem to make much sense.