コミュニティ

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

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

1件のコメント

  • Avatar
    Permanently deleted user

    Rule script example c#

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

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

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

    0

サインインしてコメントを残してください。