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

The easiest would be to use the StringReplacer.


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.


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