Available on: all targets
Alias: CENTRE

CENTER

The CENTER command aligns a text string in the center of a line. In other words, it allows you to position a word or phrase so that it occupies the available space in a symmetrical manner. The CENTER command calculates the white space needed on the sides of the string to center it within the specified width and adds the necessary spaces. If the statement is followed by a semicolon, the cursor will remain on the same line. Otherwise, it will move to the next line.

This command can be used to create aesthetically pleasing section or chapter titles, to center menu options in the center of the console and to format data neatly in a report. Centered text is easier to read and makes programs look neater.

By using CENTER, you can ensure that text is aligned uniformly in different parts of the program, and on different targets. Moreover, reduce the need to manually calculate character positions.

SYNTAX

 CENTER text [;]


Legend
  • id : identifier
  • type : datatype
  • v : value
  • "..." : string
  • [...] : optional

EXAMPLE

 CENTER "HELLO!"
 CENTER "HELLO!";


Used in:

ABBREVIATION: Ce

Join BASIC 10Liner Contest with ugBASIC!

An interesting competition is held at the beginning of each year: the BASIC 10Liner Contest. It is possible to use ugBASIC to participate in the next "BASIC10Liner" competition, in the following categories:

  • PUR-120 - A game in 10 lines of max 120 characters (w/abbrev.)
  • EXTREME-256 - A game in 10 lines of max 256 characters (w/abbrev.)
  • SCHAU - Any program in 10 lines of max 256 characters (w/abbrev.)
In order to reduce space you can use this abbreviation for this instruction:

CENTER ↔ Ce

Any problem?

If you have found a problem with this keyword, if you think there is a bug or, more simply, you would like it to be improved, open an issue for this example on GitHub.
Thank you!

open an issue BACK TO KEYWORDS