builtin/string/Stringstruct
Methods
len : [ ] -> Integer

The number of characters in the string. More specifically, a character is defined as a Unicode scalar value, which is similar to, but not the same as, a Unicode code point.

to_upper : [ ] -> String
to_lower : [ ] -> String
append : [ other : String ] -> String
ends_with : [ pat : String ] -> Boolean
starts_with : [ pat : String ] -> Boolean
contains : [ pat : String ] -> Boolean
find : [ pat : String ] -> Option<Integer>
rfind : [ pat : String ] -> Option<Integer>
replace : [ from : String to : String ] -> String
replacen : [ from : String to : String count : Integer ] -> String
split : [ pat : String ] -> Split
eq : [ other : OtherType ] -> Boolean
to_string : [ ] -> String