Split column by last 4 letters/characters

@knimedt you could determine the length of the string and then extract the last portion …

substr(column("column1"),length(column("column1"))-4 , 4)

3 Likes