For some reason I'm getting an error on this function, does anyone know how to get the right 6 characters of a string?
substring(
triggerOutputs()?['body/{Name}'],
length(triggerOutputs()?['body/{Name}'])-6,
6)
Error - the expression is invalid
Solved! Go to Solution.
You need a sub() expression to subtract the number of characters from the string length.
See my example below:
You need a sub() expression to subtract the number of characters from the string length.
See my example below:
Worked flawlessly. Appreciate it!