How to remove substrings inside row values

The values of a column in my dataframe have the values as follows.

Timepoint
Day1.0Hour2
Day1.0Hour4
Day2.0Hour2

How can I erase the .0? I’ve tried with string manipulation as follows:

removeChars($Timepoint$, ".0")

But this erases the 0 in other parts of the string…

Try:

replace($Timepoint$, ".0", "")
2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.