Skip to content

Until character¤

Extracts the substring until the character given.

Examples¤

Notation: List of values are represented via square brackets. Example: [first, second] represents a list of two values “first” and “second”.


Example 1:

  • Parameters

    • untilCharacter: c
  • Input values:

    1. [abcde]
  • Returns: [ab]


Example 2:

  • Parameters

    • untilCharacter: c
  • Input values:

    1. [abab]
  • Returns: [abab]

Parameter¤

Until character¤

No description

  • Datatype: char
  • Default Value: None

Comments