You will be charged % cancellation fee
|
Please Choose |
Full Order Select Items |
Build workflows and apps that ensure first item in array equals specified string - for Microsoft Power Platform, Salesforce, Nintex and more.
The “Starts with String” action ensures that the first item in a collection is equal to a user inputted string.
Parameters
Title | Name | Type | Description |
---|---|---|---|
Values | input | array | Collection of items to count |
Text | match | string | Text to match |
Trim | trim | string | Trim whitespace |
Ignore Case | ignorecase | string | Ignore case |
Response
Status | Title | Name | Type | Description |
---|---|---|---|---|
Success | Result | result | array | Array with chosen first item |
Failure | Result | result | string | Error description |
How to ensure first item in array equals specified string with Microsoft Power Automate
Instructions
Example
Video
How to ensure first item in array equals specified string with Microsoft Power Apps
Instructions
Example
Video
How to ensure first item in array equals specified string with Salesforce
Instructions
Example
Video
How to ensure first item in array equals specified string with Nintex
Instructions
Example
Video
const request = require('request');
const options = {
method: 'POST',
url: 'https://connect.apptigent.com/api/utilities/CountCollection',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'content-type': 'application/json',
accept: 'application/json'
},
body: {input: ['a', 'd', 'c', 'b', 'e']},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});