Trim String in Power Automate Flow

1 year ago
6

Trim String in Power Automate Flow

Hey welcome to WeTechCareOfYou!

If you are a returning subscriber we wish to say thankyou!
If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a project or require set hours for development, support or maintenance then please email Admin@WeTechCareOfYou.com or complete a form here: https://wetechcareofyou.com/contact/
Kind Regards, The WeTechCareOfYouTeam

In this video we will take a string of 12345678910111213141516 and trim it to output 12345.

Code used:
if(greater(length(variables('Large Var')),5),
take(variables('Large Var'),5),
variables('Large Var')
)

Loading comments...