Power Automate: sub Function
I have to admit that the “sub function” and all the other analogous functions (add, mul and div) are quite strange. This function will subtract …
Making your life easier!
This Power Automate function reference has two main objectives. To explore the fundamental concepts and understand them better. The second is to provide some feedback on how to use them efficiently.
I don’t want for this Power Automate function reference to replace the excellent Microsoft reference, but I want to augment it with some information that you only find once you use the tools.
I have to admit that the “sub function” and all the other analogous functions (add, mul and div) are quite strange. This function will subtract …
The length function is handy to get the size of a string or the number of objects of a collection. So you can use it …
The “indexOf” function is essential for data parsing. You’ll rarely parse some text and don’t use this function. It returns the first occurrence of a …
The substring function is widely popular and widely used. We have the need all the time to parse the string to get sections of it. …
The “replace” function is one that shows up frequently in every programming language. The usage is simple but extremely powerful. Usage It follows a simple …
The join function is handy although I, don’t see many people using it. It converts an array in a string with a delimiter. At first, …
The int Function does something super simple. Convert a string into an integer value. That’s it. But, as always, we need to be careful while …
The split Function breaks down your string into an array of strings using the delimiter that you defined. Think of the delimiter as a border. …
The toLower Function sets all items in a string to lowercase. There is the toUpper function also, and these functions are super useful, mainly if …
The toUpper Function sets all items in a string to uppercase. There is the toLower function also, and these functions are super useful, mainly if …