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.
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(“,”,“”))
Thanks for your comment.
I try the same with your suggestion and done.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.