Hi Uipath,
I need help with my problem.
I am extracting a numeric variable to SAP.
let say after get text activity I have the value below:
Example: 29.730.935,00
and I want to transform it into this format 29730935.000
May I know how can I do that?
Advance thanks to everyone 
Hi @alvin.c.apostol26,
You can use this assign.
strVar = strVar.replace(β.,ββ).replace(β,β,β.") + β0β
Can you try this please.
Kind Regards
Gokul001
(Gokul Balaji)
3
Hi @alvin.c.apostol26
Have you tried with Format Value activity
Check out the docs
Regards
Gokul
Gokul001
(Gokul Balaji)
4
Hi @alvin.c.apostol26
You can also try with Replace method
Use Assign activity
OutputVal= "29.730.935,00".Replace(".","").Replace(",",".")+"0"

Regards
Gokul
system
(system)
Closed
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.