String Manipulation Action Automation

For Workflows Documentation

Action: Capitalize

Purpose: Used to convert any string value to uppercase letters.

1. STRING

  • Input Required: Enter the string you want to transform to uppercase.

Action: lends_with

Purpose: Checks if a string ends with a specified suffix (case-insensitive).

1. STRING

  • Input Required: The main string to check.

2. SUFFIX

  • Input Required: The string suffix you want to check for at the end of the main string.

Action: Url_addarg

Purpose: Adds or updates a query parameter in a given URL.

1. URL

  • Input Required: The full base URL you want to modify.

2. ARGUMENT NAME

  • Input Required: The name of the parameter to add or update.

3. ARGUMENT VALUE

  • Input Required: The value to assign to the specified parameter.

Action: String Concat

Purpose: Combines two strings into one continuous string.

1. FIRST VALUE

  • Input Required: The first part of the string.

2. SECOND VALUE

  • Input Required: The second part of the string.

Action: Ltrim String

Purpose: Removes whitespace or specified characters from the start (left side) of a string.

1. TEXT

  • Input Required: The original string you want to trim.

2.CHARACTERS

  • Input Required: Specify characters to remove instead of just whitespace.

Action: Get_urlarg

Purpose: Extracts the value of a specific query parameter from a given URL.

1. URL

  • Input Required: The full URL string containing query parameters.

2. ARGUMENT NAME

  • Input Required: The name of the query parameter whose value you want to retrieve.

Action: String Index

Purpose: Find the position (index) of a substring within a given string.

1. TEXT

  • Input Required: The main string where you want to search.

2. SEARCH

  • Input Required: The substring you want to find within the main string.

Action: String Contains

Purpose: Checks if a given substring exists within a larger string.

1.TEXT

  • Input Required: The main string to check in.

2. SEARCH

  • Input Required: The substring you want to find inside the main string.

Action: Split String

Purpose: Breaks a text into parts based on a delimiter.

1.TEXT

  • Input Required: The full string you want to split.

2. DELIMITER

  • Input Required: The character or string used to separate parts in the text.

Action: Replace

Purpose: Replaces occurrences of a specified substring in a string with a new substring.

1.STRING

  • Input Required: The original string where you want to make replacements.

2. SEARCH STRING

  • Input Required: The substring you want to find and replace.

3. REPLACEMENT

  • Input Required: The substring to replace the search string with.

Action: Iindex

Purpose: Finds the position of the first occurrence of a substring within a string, ignoring case differences.

1.STRING

  • Input Required: The full string where you want to search.

2. SUBSTRING

  • Input Required: The substring to find (case-insensitive).

Action: String Length

Purpose: Returns the total number of characters in a given string, including spaces and special characters.

1.STRING

  • Input Required: The text string for which you want to calculate the length.

Action: Istarts_with

Purpose: Checks whether the beginning of a string matches a specified prefix (case-insensitive).

1.STRING

  • Input Required: The text string to evaluate.

2. PREFIX

  • Input Required: The pattern to check at the beginning of the string.

Action: Icontains

Purpose: Checks if a string contains a specific substring, ignoring case sensitivity.

1.TEXT

  • Input Required: The main string to search within.

2. SEARCH

  • Input Required: The substring to look for.

Action: Query String Parse

Purpose: Reads a query string and extracts a list of key-value pairs from it.

1.QUERY STRING

  • Input Required: The full query string you want to parse.

Action: Strip_html

Purpose: Removes all HTML tags from a string, leaving only plain text content.

1.TEXT

  • Input Required: The string containing HTML you want to clean.

Action: Check String

Purpose: Checks whether a specific expression is found at the beginning of a given phrase or sentence.

1.TEXT

  • Input Required: The full phrase or sentence you want to evaluate.

Action: Text To UpperCase

Purpose: Converts a given string into uppercase letters.

1.TEXT

  • Input Required: The string you want to convert.

Action: Text To Lower

Purpose: Converts all characters in the given string to lowercase.

1.TEXT

  • Input Required: The string you want to convert.

Action: Url_hasarg

Purpose: Checks whether a specific query parameter exists in a given URL.

1.URL

  • Input Required: The full URL you want to check.

Action: Trim Text

Purpose: Removes whitespace or specified characters from both ends of a string.

1.TEXT TO TRIM

  • Input Required: The string you want to trim.

Action: String Data Extractor

1.TEXT

  • Input Required: Enter the text from which you want to extract data.

2.SEPARATOR CHARACTER

  • Input Required: Enter the character that separates the data elements within the text.