How to remove a dot from a variable? My variable is 5.124,34 - and I would like it to be: 5124,34
Thank You ![]()
How to remove a dot from a variable? My variable is 5.124,34 - and I would like it to be: 5124,34
Thank You ![]()
HI @sullivanne
InputVariable.ToString.Replace(".","")
You have asked the question in studioX I missed it. Below is the workflow for the StudioX.
regards
Assign activity: yourVariable = yourVariable.Replace(β.β, ββ)
or
Assign activity: yourVariable = yourVariable.ToString(βN2β, CultureInfo.GetCultureInfo(βen-USβ))
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.