dev

This is the documentation page for Module:Docbunto/testcases/Generics

Docbunto generic types test case

Documentation

Package items

text.trim(str) (function)
Docbunto string trim case
Parameter: str String to trim whitespace from. (string)
Returns: Trimmed value of str. (string)
text.split(str, delimiter, isPattern) (function)
Docbunto split test case
Parameters:
  • str String to split. (string)
  • delimiter The substring used by the split operation. (string)
  • isPattern Whether the delimiter is a pattern. (boolean; optional)
Returns: List of strings split by delimiter. (sequence<string>)