Alias of strSnoc
"AB" +> 'C'
Alias of strCons
'A' <+ "AB"
Remove the first n
characters from a string. Returns the empty string if
the input string is too short.
Remove the last n
characters from a string. Returns the empty string if
the input string is too short.
Indent a given string by n
spaces.
Indent each line of a given string by n
spaces.
Get a character from a string if the string is long enough.
Concatenate the strings from a Foldable
containing strings, separated by
the given string.
Produce a string by repeating the character c
n
times.
Remove the first and last n
characters from a string. Returns the empty
string if the input string is too short.
Adds a character to the end of the specified string.
strSnoc "AB" 'C'
strSnoc "" 'A'
Take the first n
characters from a string. Returns the whole string
if it's too short.
Take the last n
characters from a string. Returns the whole string
if it's too short.