Solved

How can I convert with "AttributeCraetor". For example, I want 123,34 to 123.34. commas to dot thanks

  • 29 April 2021
  • 3 replies
  • 0 views

Badge
How can I convert with "AttributeCraetor". For example, I want 123,34 to 123.34. commas to dot thanks
icon

Best answer by caracadrian 29 April 2021, 10:18

View original

3 replies

Userlevel 4

The easiest would be to use the StringReplacer.

Badge +20

If you want to replace commas to dots in AttributeCreator use the ReplaceString function:

@ReplaceString(@Value(attribute),",",.)

Don't forget to enclose your comma in double quotes.

Badge

If you want to replace commas to dots in AttributeCreator use the ReplaceString function:

@ReplaceString(@Value(attribute),",",.)

Don't forget to enclose your comma in double quotes.

thank you. I've been using FME for 2 weeks. It worked .

Reply