remember: you can’t handle numeric formats in String Manipulation as you can’t handle strings in Math Formula.
Use the Column Expression node if you want to avoid this kind of issues!
If you want to remove the “.”, if depends on how you want to remove it: do you need a conversion assuggested by @tqAkshay95 or just a plain removal?
In case of the second option, use column expression with this formula:
Although Math Formula cannot interact with strings, it’s not totally the case that String Manipulation cannot handle numeric formats, in spite of its name.
It’s often underutilised as a node because it isn’t always obvious what it can achieve.
It is correct to say that it cannot perform string replacement directly on a Double, but it can use it in string transformations, if it first converts the Double to a string.
So the following would return the Double converted to an Integer using string replacement, as an equivalent of @lelloba’s Column Expression:
toInt(replace(string($column1$),".",""))
and it can also do the equivalent of @tqAkshay95 's Math Formula approach: