Formatting

In this section we cover aspects of string formatting; i.e. capitalization, line wrapping, and alignment.

In particular, this section is organized as follows:

  • Case where we cover how to set the case of a string e.g. to lower case, or to upper case.
  • Wrapping where we cover how to format a string as a paragraph with a certain line width; i.e. inserts newline characters at a given line width.
  • Alignment where we cover how to align text to the left, right, or center within a given width specified as a number of characters.
SQL
I/O