Strings
The Strings registry offers a comprehensive set of functions for manipulating strings, including formatting, splitting, joining, and other common string operations.
You can easily import all the functions from the strings
registry by including the following import statement in your code
nospace
The function removes all whitespace characters from the provided string, eliminating any spaces, tabs, or line breaks.
Signature
trim
The function removes any leading and trailing whitespace from the provided string.
Signature
trimAll
The function removes all instances of any characters in the 'cutset' from both the beginning and the end of the provided string.
Signature
trimPrefix
The function removes the specified 'prefix' from the start of the provided string if it is present.
Signature
trimSuffix
The function removes the specified 'suffix' from the end of the provided string if it is present.
Signature
contains
The function checks whether the provided string contains the specified substring.
Signature
hasPrefix
The function checks whether the provided string starts with the specified prefix.
Signature
hasSuffix
The function checks whether the provided string ends with the specified suffix.
Signature
toLower
The function converts all characters in the provided string to lowercase.
Signature
toUpper
The function converts all characters in the provided string to uppercase.
Signature
replace
The function replaces all occurrences of a specified substring ('old') in the source string with a new substring ('new').
Signature
repeat
The function repeats the provided string a specified number of times.
Signature
join
The function concatenates elements of a slice into a single string, with each element separated by a specified delimiter. It can convert various slice types to a slice of strings if needed before joining.
Signature
trunc
The function truncates the provided string to a maximum specified length. If the length is negative, it removes the specified number of characters from the beginning of the string.
Signature
shuffle
The function randomly rearranges the characters in the provided string, producing a shuffled version of the original string.
Signature
ellipsis
The function truncates a string to a specified maximum width and appends an ellipsis ("...") if the string exceeds that width.
Signature
ellipsisBoth
The function truncates a string from both ends, preserving the middle portion and adding ellipses ("...") to both ends if the string exceeds the specified length.
Signature
initials
The function extracts initials from a string, optionally using specified delimiters to identify word boundaries.
Signature
plural
The function returns a specified string ('one') if the count is 1; otherwise, it returns an alternative string ('many').
Signature
wrap
The function breaks a string into lines, ensuring that each line does not exceed a specified maximum length. It avoids splitting words across lines unless absolutely necessary.
Signature
wrapWith
The function breaks a string into lines with a specified maximum length, using a custom newline character to separate the lines. It only wraps words when they exceed the maximum line length.
Signature
quote
The function wraps each element in a provided list with double quotes and separates them with spaces.
Signature
squote
The function wraps each element in the provided list with single quotes and separates them with spaces.
Signature
toCamelCase
Converts a string to camelCase
format.
Signature
toKebabCase
Converts a string to kebab-case
format.
Signature
toPascalCase
Converts a string to PascalCase
format.
Signature
toDotCase
Converts a string to dot.case
format.
Signature
toPathCase
Converts a string to path/case
format.
Signature
toConstantCase
Converts a string to CONSTANT_CASE
format.
Signature
toSnakeCase
Converts a string to snake_case
format.
Signature
toTitleCase
Converts a string to Title Case
format.
Signature
untitle
Converts the first letter of each word in a string to lowercase.
Signature
swapCase
Switches the case of each letter in a string, converting lowercase to uppercase and vice versa.
Signature
capitalize
Uppercases the first letter of a string while leaving the rest of the string unchanged.
Signature
uncapitalize
Lowercases the first letter of a string while leaving the rest of the string unchanged.
Signature
split
Divides a string into a map of parts based on a specified separator, returning a collection of the split components.
Signature
splitn
Splits a string into a specified number of parts using a separator, returning a map with up to n
elements.
Signature
substr
Extracts a portion of a string based on given start and end positions, with support for negative indices to count from the end.
Signature
indent
Adds spaces to the beginning of each line in a string, effectively indenting the text.
Signature
nindent
Similar to Indent
, but also adds a newline before the indented lines.
Signature
seq
Generates a sequence of numbers as a string, allowing for customizable start, end, and step values, similar to the Unix seq
command.
Signature
Last updated