String Functions in azure Logical Apps

Опубликовано: 23 Сентябрь 2021
на канале: Azure Cloud Explorer
1,179
13

1. string Functions
concat Combine two or more strings, and return the combined string.
endsWith
Check whether a string ends with the specified substring.
formatNumber Return a number as a string based on the specified format
guid Generate a globally unique identifier (GUID) as a string.
indexOf Return the starting position for a substring.
lastIndexOf
Return the starting position for the last occurrence of a substring.
length Return the number of items in a string or array.
replace Replace a substring with the specified string, and return the updated string.
split Return an array that contains substrings, separated by commas, from a larger string based on a specified delimiter character in the original string.
startsWith
Check whether a string starts with a specific substring.
substring
Return characters from a string, starting from the specified position.
toLower Return a string in lowercase format.
toUpper Return a string in uppercase format.
trim Remove leading and trailing whitespace from a string, and return the updated string.