view scripts/strings/strjust.m @ 8920:eb63fbe60fab

update copyright notices
author John W. Eaton <jwe@octave.org>
date Sat, 07 Mar 2009 10:41:27 -0500
parents 502e58a0d44f
children 58604c45ca74
line wrap: on
line source

## Copyright (C) 2000, 2001, 2003, 2005, 2006, 2007, 2009 Paul Kienzle
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} strjust (@var{s}, ["left"|"right"|"center"])
## Shift the non-blank text of @var{s} to the left, right or center of
## the string.  If @var{s} is a string array, justify each string in the
## array.  Null characters are replaced by blanks.  If no justification
## is specified, then all rows are right-justified. For example:
##
## @example
## @group
## strjust (["a"; "ab"; "abc"; "abcd"])
##      @result{} ans =
##            a
##           ab
##          abc
##         abcd
## @end group
## @end example
## @end deftypefn

function x = strjust (x, just)

  if (nargin < 1 || nargin > 2)
    print_usage ();
  endif

  if (nargin == 1)
    just = "right";
  endif

  just = tolower (just);

  ## convert nulls to blanks
  idx = find (toascii (x) == 0);
  if (! isempty (idx))
    x(idx) = " ";
  endif

  ## For all cases, left, right and center, the algorithm is the same.
  ## Find the number of blanks at the left/right end to determine the
  ## shift, rotate the row index by using mod with that shift, then
  ## translate the shifted row index into an array index.
  [nr, nc] = size (x);
  idx = (x' != " ");
  if (strcmp (just, "right"))
    [N, hi] = max (cumsum (idx));
    shift = hi;
  elseif (strcmp (just, "left"))
    [N, lo] = max (cumsum (flipud (idx)));
    shift = (nc - lo);
  else
    [N, hi] = max (cumsum (idx));
    [N, lo] = max (cumsum (flipud (idx)));
    shift = ceil (nc - (lo-hi)/2);
  endif
  idx = rem (ones(nr,1)*[0:nc-1] + shift'*ones(1,nc), nc);
  x = x (idx*nr + [1:nr]'*ones(1,nc));

endfunction

%!error <Invalid call to strjust> strjust();
%!error <Invalid call to strjust> strjust(["a";"ab"], "center", 1);
%!assert (strjust (["a"; "ab"; "abc"; "abcd"]),
%!        ["   a";"  ab"; " abc"; "abcd"]);
%!assert (strjust (["a"; "ab"; "abc"; "abcd"], "center"),
%!        [" a  "; " ab"; "abc "; "abcd"]);