I want to split sentences in a document but firstly I want to find decimals,version numbers etc. in document and change the points to commas. For example:
I used the default "2.00" quality setting in Premiere 2.0.1, and specified a key frame every ten frames.
I want change this sentence to the above form
I used the default "2,00" quality setting in Premiere 2,0,1, and specified a key frame every ten frames.
re.findall('\d*\.?\d+',s)
this code finds decimal but I couldn't change points to commas