How to replace only integers in a string by a string
My script:
x="the number 1234, today the 909090 of the value of the 90.94"
# by the way the has to be proposed to get the123abd 123the" by a string "ItWasanINT""
re.sub(r'\b\d+(?!\.\d+)\b','ItWasanINT',x)
...Not working
90.94value should not be replaced?