# README
lysstring
String functions.
# Functions
ContainsAny returns true if any string in elements is found in slice.
Convert changes value separation of s, e.g.
DeAlias converts []T to []string, where T is an alias of string.
IsAscii returns true if s only contains ASCII chars from https://stackoverflow.com/questions/53069040/checking-a-string-contains-only-ascii-characters.
RandString creates a random string from https://stackoverflow.com/questions/22892120/how-to-generate-a-random-string-of-a-fixed-length-in-go.
RemoveCharacters returns input with the chars in charsToRemove removed from https://socketloop.com/tutorials/golang-remove-characters-from-string-example.
ReplaceAccents replaces accent characters such as "ö" with their non-accented equivalents such as "o" from https://twin.sh/articles/33/remove-accents-from-characters-in-go.
Title returns s in title case using non-specific language rules.