I would like to strip the , at the end of a string. I'm able to find the start of the string using ..StartsWith(String,",") but not able to strip the "," at the end of a string.
I've tried:
Str="Addr1,Addr2,"
Piece(Str,"",1,Length(Str)-1)
Piece(Str,"",1,Length(Str)-2)
Extract(Str, Length(Str)-1)
Extract(Str, Length(Str))
But nothing works as expected.