zsh-workers
 help / color / mirror / code / Atom feed
* Stripping spaces from a shell variable, portably
@ 2003-10-01  9:27 DervishD
  2003-10-01  9:50 ` Thomas Köhler
  2003-10-01 15:14 ` Bart Schaefer
  0 siblings, 2 replies; 5+ messages in thread
From: DervishD @ 2003-10-01  9:27 UTC (permalink / raw)
  To: Zsh

    Hi all :))

    I need to strip leading and trailing spaces from the contents of
a shell variable, and I need to do it portably, with a construct like
${...%% } and with no loops. When I say 'portably' I mean using SuSv3
constructs, not Zsh extensions.

    I've tried the obvious ${variable# } for stripping a single
space, but this needs a while loop, which I want to avoid (although
it seems to be portable):

    while [ "$variable" != "${variable# }" ]
    do
        variable="${variable# }"
    done

    And the same with the '%' construct. Please note that I cannot
use '[[' for the test, since it must be portable, and this involves
exec'ing the 'test' binary for each space in the variable :((

    If no solution is possible I'll use 'tr', because the shell code
must run in bash and zsh at least, but I really want it to be able to
run in any SuSv3 compliant shell.

    Thanks a lot for your help :)

    Raúl Núñez de Arenas Coronado

-- 
Linux Registered User 88736
http://www.pleyades.net & http://raul.pleyades.net/


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-10-01 19:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-01  9:27 Stripping spaces from a shell variable, portably DervishD
2003-10-01  9:50 ` Thomas Köhler
2003-10-01 14:00   ` DervishD
2003-10-01 15:14 ` Bart Schaefer
2003-10-01 19:49   ` DervishD

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).