string [OPTIONS] [VERB] [VERB PARAMETERS...]
string is a command line tool for transforming strings in common ways.
Below are a set of options available.
-d, -delimiter set the delimiter
-do, -output-delimiter set the output delimiter
-e, -examples display examples
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input input file name
-l, -license display license
-nl, -newline if true add a trailing newline
-o, -output output file name
-quiet suppress error messages
-v, -version display version
Convert text to upper case
string toupper "one"
Convert text to lower case
string tolower "ONE"
Captialize an English phrase
string englishtitle "one more thing to know"
Split a space newline delimited list of words into a JSON array
string -i wordlist.txt split "\n"
Join a JSON array of strings into a newline delimited list
string join '\n' '["one","two","three","four","five"]'
string v0.0.25