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
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件のコメント
Rule script example c#
string fieldValue = Context.Field("Quantity").Text;
fieldValue = fieldValue.Replace(".","");
Context.Field("Quantity").Text = fieldValue;
サインインしてコメントを残してください。