Solved

Hi ! I would like to remove the "," at the very beginning of the concatenation.


 

I tried with the transformer "substringextractor" but I remove the "1" from my thousandth when there is no comma at the beginning.

 

I saw that there was a transformer "LastSectionOfStringRemover", maybe it exists for the beginning?

 

image

icon

Best answer by chrisatsafe 1 April 2022, 20:18

View original

3 replies

Badge +2

Hi @clozanolpz​ ,

You can use a StringReplacer in the Replace Regular Expression Mode with the following text to replace:

^,

image

Userlevel 2
Badge +17

Alternatively, you can also use the AttributeTrimmer to remove a specific character from the left side and/or right side of a string.

Hi Chrisatsafe and Takashi!

Both solutions work, thank you !

Reply