Remove n number of characters from the end of the strings in a column

Hello @deicide_bg,

don’t think there is a need for such function as substring() function seems pretty straightforward:

  • substr($col_name$, n) :arrow_right: removes first n chars from string
  • substr($col_name$, 0, length($col_name$) - n ) :arrow_right: removes last n chars from string

Hope this helps!

Br,
Ivan

5 Likes