Convert to Int Newbie

Hi,

This my first time to learn language UiPath. My question is I have variable “184,888,222,999” I want to convert to “184888222999” How can I convert like this?

Thank you.

yourVariable.replace(“,”,“”) - @Feri_R,

Thanks!

@Feri_R Try like below

String Var = “184,888,222,999”

Int64 output = Convert.ToInt64(var.Replace(“,”,“”))

1 Like

Thanks for your comment.

1 Like

I try the same with your suggestion and done.

1 Like

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