String Utilities Subpackage (str)
The str module provides text manipulation routines including splitting, case conversion, and pattern replacement.
API Reference
str.split(text: String, delimiter: String): Vector[String]
Splits text into a vector of substrings separated by delimiter.
str.lower(text: String): String
Converts all characters in text to lower case.
str.upper(text: String): String
Converts all characters in text to upper case.
str.replace(text: String, target: String, replacement: String): String
Replaces all occurrences of target substring within text with replacement.