Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

One can add several 'modifiers' to a key in square brackets to control number of columns, separator string and format:

Code Block
[key!c%F'S']
Info
c -> number of columns


F -> C-style formatting


S -> separator string


Examples:

Code Block
[latitude!11] -> print array using 11 columns
[latitude','] -> print array with entries separated by a comma
[latitude%.5f] -> print real numbers with 5 decimal places

...