Hi, is it possible to keep first characters of a string?
It the reverse of String.Remove
In put = CN_Blok-1_Voorgevel )
Out put = CN_Blok-1
Hi, is it possible to keep first characters of a string?
It the reverse of String.Remove
In put = CN_Blok-1_Voorgevel )
Out put = CN_Blok-1
@s.bosch you could also consider extracting a substring
for people who like excel’s LEFT/RIGHT/MID string functions:
I’m sure there is a more elegant way to do this, but it seems more straightforward than counting characters or manipulating strings.
Thanks, @m.owens.
Your way is great!