Home > Software design >  Remove leading zeros from a string using functions available in logic app
Remove leading zeros from a string using functions available in logic app

Time:09-27

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 enter image description here

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',''))))
  • Related