Skip to main content

Modify Text

Used to modify text.

Input

  • Source: The source that will be modified
    • Type: System.String
    • Required

Output

  • Result: Store the resulting text value
    • Type: System.String
    • Required

Details

  • You can perform one of the following operations to make changes to the texts:

Combine Text

Appends the specified text to the text in the main activity.

Input

  • Text to Combine: The text to be combined.

    • Type: System.String
    • Required
  • Combine Position: The position where the combining operation will be performed.

    • Type: System.Int32
    • Dropdown Options:
      • Left
      • Right

Find and Replace

Finds and replaces the specified text in the text.

Input

  • Search for: The word to be searched in the text.

    • Type: System.String
    • Required
  • Replace with: The word to be written in place of the found word.

    • Type: System.String
    • Required

Options

  • Match Case: Determines whether the search operation is case sensitive.
    • Type: System.Boolean
    • Required

Text to Upper/Lower

Converts the texts in the text to uppercase or lowercase.

Input

  • Change Text: The type to which the texts will be converted.

    • Type: System.Int32
    • Dropdown Options:
      • Upper Case
      • Lower Case
  • Use Current Culture: Determines whether the current culture will be used in the conversion.

    • Type: System.Boolean
    • Required

Trim Text

Removes leading and trailing white-space characters from the text if selected.

Input

  • Trim Left: Determines whether to remove leading white-space characters.
    • Type: System.Boolean
    • Required
  • Trim Right: Determines whether to remove trailing white-space characters.
    • Type: System.Boolean
    • Required