Collapse all glue to the same string and trim all leading and trailing glue
Collapse all glue to the same string and trim all leading and trailing glue
string to replace glue runs with
string with all glue collapsed to glueSubst and all leading and trailing glue trimmed
string with all whitespace collapsed to a single space and all leading and trailing whitespace trimmed
Parse a string to some type
Parse a string to some type
function to parse string to type
None if String fails to convert to A OR Some(A) if string can be converted to a valid A value
string to ensure is at the end of the string
string with suffix appended if string does not end with suffix
Replace string sections by matching from a set of string literals and replacing with a replacement string literal.
Replace string sections by matching from a set of string literals and replacing with a replacement string literal.
zero or more (find string literal, replace string literal) tuples
TRUE to for case-sensitive matching FALSE otherwise
string with all replacements. For each (find*,replace) pair, any occurrences of any find are substituted with replace. See note1 above.
Replace words in string sections by matching from a set of string literals to a replacement string literal.
Replace words in string sections by matching from a set of string literals to a replacement string literal.
zero or more (find string literal, replace string literal) tuples
TRUE to for case-sensitive matching FALSE otherwise
string with all replacements. For each (find*,replace) pair, any occurrences of any find are substituted with replace. See note1 above.
Replace string sections by matching regex and replacing with a string literal.
Replace string sections by matching regex and replacing with a string literal.
zero or more (regex, replacement string literal) tuples
string with all occurrences of regex replaced with the paired string. See note1 above.
Replace string sections by matching regex and replacing with result of match function.
Replace string sections by matching regex and replacing with result of match function.
zero or more (regex, match function) tuples
string with all occurrences of regexes replaced with the string returned by passing the match generated by the regex to the paired function. See note1 above.
Replace string sections by matching string literal with a replacement string literal.
Replace string sections by matching string literal with a replacement string literal.
zero or more (find string literal, replace string literal) tuples
TRUE to for case-sensitive matching FALSE otherwise
string with all replacements. For each (find,replace) pair, all occurrences of find that match regions of the string substituted with replace. See note1 above.
Replace words in a string by matching string literal and replacing with a replacement string literal.
Replace words in a string by matching string literal and replacing with a replacement string literal.
zero or more (find string literal, replace string literal) tuples
TRUE to for case-sensitive matching FALSE otherwise
string with all replacements. For each (find,replace) pair, all occurrences of find that match a word exactly are substituted with replace. See note1 above.
number of spacers to indent with
the spacer string to use while indenting
string with all lines indented by n occurrences of s
function to map words
a string with all words replaced with the result of passing the word to f. all glue is preserved
all words camel-cased i.e. camelCase
None if String fails to convert to Double OR Some(Double) if string can be converted to a valid Double value
None if String fails to convert to Int OR Some(Int) if string can be converted to a valid Int value
None if String fails to convert to Long OR Some(Long) if string can be converted to a valid Long value
None if string length is 0 OR Some(String) if length > 0
all words camel-cased i.e. CamelCase
the first character to uppercase and the remaining characters to lowercase
all words camel-cased i.e. camel_case
each word in proper case with glue preserved
all words contained in string
all words and glue contained in string