Is there any logic to remove leading zeros from an alphanumeric string using functions available in logic app in a single step
CodePudding user response:
Here is how I got the fix
Here is the screenshot of my logic app
I'm passing alphanumeric string from HTTP request and Here is the compose function that worked for me
substring(triggerBody(),indexOf(triggerBody(),first(replace(triggerBody(),'0',''))))