zsh-workers
 help / color / mirror / code / Atom feed
From: "Thomas Köhler" <jean-luc@picard.franken.de>
To: Zsh <zsh-workers@sunsite.dk>
Subject: Re: Stripping spaces from a shell variable, portably
Date: Wed, 1 Oct 2003 11:50:06 +0200	[thread overview]
Message-ID: <20031001095005.GA22203@picard.franken.de> (raw)
In-Reply-To: <20031001092757.GA31207@DervishD>

[-- Attachment #1: Type: text/plain, Size: 1640 bytes --]

Hi,

DervishD wrote [2003/10/01]:
>     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.

Why not
  variable=`echo "$variable" | sed -e 's/^ *//' -e 's/ *$//'`
?

I'm not sure whether all versions of sed understand multiple
"-e" arguments, so it might me necessary to use this:
  variable=`echo "$variable" | sed -e 's/^ *//' | sed -e 's/ *$//'`

>     Thanks a lot for your help :)
> 
>     Raúl Núñez de Arenas Coronado

Ciao,
Thomas

-- 
 Thomas Köhler Email:   jean-luc@picard.franken.de     | LCARS - Linux
     <><        WWW:     http://jeanluc-picard.de      | for Computers
                IRC:             jeanluc               | on All Real
               PGP public key available from Homepage! | Starships

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2003-10-01  9:54 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-01  9:27 DervishD
2003-10-01  9:50 ` Thomas Köhler [this message]
2003-10-01 14:00   ` DervishD
2003-10-01 15:14 ` Bart Schaefer
2003-10-01 19:49   ` DervishD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20031001095005.GA22203@picard.franken.de \
    --to=jean-luc@picard.franken.de \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).