A notable feature of Power Automate is its capability to manipulate strings through different expressions, such as the concat function.

A powerful feature of Power Automate is the power to change strings using different expressions, such as the endsWith function. In this blog post, we will explore how to utilize the endsWith function in Power Automate to enhance and streamline your workflows.

What is the EndsWith Function?

The endsWith function in Power Automate is used to check if a string ends with a specified substring. This function returns a Boolean value (true or false), making it particularly useful for conditional logic in your flows. For instance, you might want to check if a filename ends with a particular extension or if a text message ends with a specific word or character.

Syntax of the EndsWith Function

The basic syntax of the ‘endsWith’ function is:

endsWith(string, substring)

The ‘string’ is the main string you want to check, and the ‘substring’ is the substring you want to verify if if appears at the end of the main string.

Step-by-Step Guide to Using the EndsWith Function

Step 1: Create A New Flow

Go to Power Automate (flow.microsoft.com) and create a instant cloud flow with a manual trigger. After you have created a title select “Create” to begin building the flow.

Step 2: Add “Initialize variables” action card following the below image as a template:

Step 3: Add a “Compose” action card and fill the “inputs” section with the below expression:

endsWith(variables('textInput'), 'Smith')

Step 4: Save and test the flow. The results will be as shown in the below image:

Conclusion

The endsWith function in Power Automate is a powerful tool for checking if a string ends with a specified substring. This functionality is crucial for various automation scenarios, such as file validation, message parsing, and URL verification. By incorporating the endsWith function into your flows, you can create more dynamic and conditional workflows, enhancing your automation capabilities.

Leave a Reply

Your email address will not be published. Required fields are marked *