Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Français


justify

aligns strings in columns to the left, center, or right

Syntax

Tj = justify(S, position)

Arguments

S

a matrix of character strings.

Sj

a matrix of character strings. The justified result.

position

Possible values:

'l' or 'left': left justification
'c' or 'center': centering
'r' or 'right': right justification

Description

The justify function justifies the column of a matrix of string according to the given position.

Examples

t=['1234','x','adfdfgdfghfgj'
   '1','354556','dgf'
   'sdfgd','','sdfsf'];

justify(t,'l')
justify(t,'c')
justify(t,'r')

See also

  • length — Number of characters of a string. Number of elements of an array or list.
  • part — Extraction of characters from strings
Report an issue
<< isnum Chaînes de caractères length >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Mar 27 10:12:38 GMT 2023