@bclarkuncc
This should help....
In my example, I have a string called varString.
The expression that I used to get all but the last character is:
substring(variables('varString'),0,add(length (variables('varString')),-1))
The substring function allows me to extract part of a string - I specify where to start (position 0) and how many characters I want.
To find how many characters to take, I use the length expression to give me the string length and subtract one for the result.

