Hi UiPath,
I need help with my situation.
let say I have the given two strings: 11640.000 AND 11,640.00
And I want to make them as whole number so my goal is to make both of the string equal to 11640
is there an easy way to do that?
thanks!
Hi UiPath,
I need help with my situation.
let say I have the given two strings: 11640.000 AND 11,640.00
And I want to make them as whole number so my goal is to make both of the string equal to 11640
is there an easy way to do that?
thanks!
Hi @alvin.c.apostol26
In C#
Convert.ToDouble(string).ToString()
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.