Skip to content

String

String actions enable you to handle and convert values of text format in your tasks.

Assign

Assign the specified text to a string variable.

  • Enter the assigned string: The text-formatted value or variable ready to be assigned.
  • Paste from clipboard: Specify whether the text to be assigned will be from clipboard or not.
  • Select the destination string variable: Store the assigned text to a variable.

Concat

Convert a list into a text value by separating its items with a specified delimiter.

  • Concat the source string:
  • Select the destination string variable: Store the merged string to a variable.

Contains

Verify that the text contains another text.

  • Source string: The text to verify a section of text from.
  • Find string: The subtext to search for.
  • Assign the find result to variable: Store the found result to a variable.

Get Login User Name

Get the current login username.

  • Set user name to a variable: Store the fetched username to a variable.

Lowercase

Convert the text to lowsercase.

  • Enter the source string: The text to convert.
  • Select the destination string variable: Store the converted text to a variable.

Uppercase

Convert the text to uppercase.

  • Enter the source string: The text to convert.
  • Select the destination string variable: Store the converted text to a variable.

Replace

Replace every occurrence of the specified string with a new string.

  • Enter the source string: The original text to be parsed.
  • Enter the string to search for: The sub-text to search for.
  • Case insensitive: Specify whether to find the sub-text to replace using case-insensitive matching. Default value is true.
  • Enter the string to replace with: The text to replace with.
  • Select the destination string variable: Store the processed text to a variable.

Split

Split the source string into a list of substrings by a delimiter.

  • Enter the source string: The text to split.
  • Enter the delimiter: The character that is used as a delimiter.
  • Assign the output to a list variable: Store the segmented text into a List variable.