Skip to content

Camel case tokenizer¤

Tokenizes a camel case string. That is it splits strings between a lower case character and an upper case character.

Examples¤

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


Example 1:

  • Input values:

    1. [camelCaseString]
  • Returns: [camel, Case, String]


Example 2:

  • Input values:

    1. [nocamelcase]
  • Returns: [nocamelcase]

Parameter¤

None

Advanced Parameter¤

None

  • tokenize — When word boundaries are implicit in case rather than marked by a separator, camel case tokenizer is the right tool. Tokenize requires a separator to be present in the string — it cannot infer boundaries from case alone.

Comments