Community

emount of money

Hi there,

 

does anyone have an idea how you can replace a dot with nothing.

 

Like you have an emount and it's shown like this: 3.126,35€ and you want to have it shown like this : 3126,35€

 

Thank you for your help!

 

-Toby

Was this article helpful?

0 out of 0 found this helpful

Comments

1 comment

  • Avatar
    Permanently deleted user

    Rule script example c#

    string fieldValue = Context.Field("Quantity").Text; 

    fieldValue = fieldValue.Replace(".","");

    Context.Field("Quantity").Text = fieldValue;

    0

Please sign in to leave a comment.