up vote 27 down vote favorite
5
share [g+] share [fb]

I have a shell script with this code:

var=`hg st -R "$path"`
if [ -n "$var" ]; then
    echo $var
fi

But the conditional code always executes because hg st always prints at least one newline character.

  • Is there a simple way to strip whitespace from $var (like trim() in php)?

or

  • Is there a standard way of dealing with this issue?

I could use sed or awk, but I'd like to think there is a more elegant solution to this problem.

link|improve this question

64% accept rate
feedback

23 Answers

#!/bin/sh

trim() { echo $1; }

echo ">>$(trim 'right side    ')<<"
echo ">>$(trim '    left side')<<"
echo ">>$(trim '    both sides    ')<<"
link|improve this answer
7  
for better understanding: Bash automatically trims by assigning to variables and by passing arguments. The script above return the first argument of the function call and the bash removes the whitespace on both sides of the arg. Same can also be done by assigning something to a variable. – guido Jan 19 '11 at 0:21
I tried this, but it did not work when the field separator IFS was set. For an example using perl that works with any arbitrary IFS variable, see here – TrinitronX Jun 7 '11 at 19:31
how do you use this using the script in the question? is it like if [ -n $(trim $var) ]; .... ? – ian Aug 24 '11 at 7:55
3  
Wouldn't work with more than one whitespace in the middle: echo foo<lots of spaces>bar -> foo bar – l0b0 Sep 21 '11 at 11:20
1  
what about echo ">>$(trim ' * ')<<" ? – n.m. Sep 21 '11 at 11:22
feedback

Bash has regular expressions, but they're well-hidden:

$ var='abc def'
$ echo $var
abc def
$ echo ${var/ /}
abcdef
link|improve this answer
1  
It doesn't seem to work with cygwin. – Paul Tomblin Dec 15 '08 at 21:54
Or rather, it works for spaces in the middle of a var, but not when I attempt to anchor it at the end. – Paul Tomblin Dec 15 '08 at 21:56
Does this help any? From the manpage: "${parameter/pattern/string} [...] If pattern begins with %, it must match at the end of the expanded value of parameter." – flussence Dec 15 '08 at 22:28
@Ant, so they're not really regular expressions, but something similar? – Paul Tomblin Dec 15 '08 at 22:40
2  
They're regex, just a strange dialect. – flussence Mar 5 '09 at 12:36
show 1 more comment
feedback

(Note: just created an account, don't have enough reputation to comment, thus a new answer)

In response to Brian Cain's answer and Insyte's comment:

With bash's extended pattern matching features enabled (shopt -s extglob), you can use this:

{trimmed##*( )}

to remove an arbitrary amount of leading spaces.

link|improve this answer
Terrific! I think this is the most lightweight and elegant solution. – dubiousjim Jan 27 '11 at 18:50
feedback

This will remove all spaces ...

echo " test test test " | tr -d ' '

so this results in

testtesttest

This will remove trailing spaces...

echo " test test test " | sed 's/ *$//g'

which results in

 test test test

This will remove leading spaces...

echo " test test test " | sed 's/^ *//g'

which results in

test test test
link|improve this answer
feedback

You can delete newlines with tr:

var=`hg st -R "$path" | tr -d '\n'`
if [ -n $var ]; then
    echo $var
done
link|improve this answer
I don't want to remove '\n' from the middle of the string, only from the beginning or end. – too much php Dec 15 '08 at 21:48
feedback
# "Remove leading & trailing whitespace from a Bash variable",
# http://codesnippets.joyent.com/posts/show/1816

var="    abc    "
var="${var#"${var%%[![:space:]]*}"}"   # remove leading whitespace characters
var="${var%"${var##*[![:space:]]}"}"   # remove trailing whitespace characters
echo "===$var==="
link|improve this answer
feedback

I've always done it with sed

  var=`hg st -R "$path" | sed -e 's/  *$//'`

If there is a more elegant solution, I hope somebody posts it.

link|improve this answer
feedback
#!/bin/sh

trim()
{
    trimmed=$1
    trimmed=${trimmed%% }
    trimmed=${trimmed## }

    echo $trimmed
}


HELLO_WORLD=$(trim "hello world  ")
FOO_BAR=$(trim " foo bar")
BOTH_SIDES=$(trim " both sides  ")
echo "'${HELLO_WORLD}', '${FOO_BAR}', '${BOTH_SIDES}'"
link|improve this answer
2  
That will only trim a single leading or trailing space. – Insyte Feb 24 '10 at 1:01
feedback

I've seen scripts just use variable assignment to do the job:

$ xyz=`echo -e 'foo \n bar'`
$ echo $xyz
foo bar

Whitespace is automatically coalesced and trimmed. One has to be careful of shell metacharacters (potential injection risk).

I would also recommend always double-quoting variable substitutions in shell conditionals:

if [ -n "$var" ]; then

since something like a -o or other content in the variable could amend your test arguments.

link|improve this answer
feedback

use awk

echo $var | awk '{gsub(/^ +| +$/,"")}1'
link|improve this answer
Sweet that seems to work (ex:) $stripped_version=echo $var | awk '{gsub(/^ +| +$/,"")}1'`` – rogerdpack Apr 15 '10 at 18:29
1  
except awk isn't doing anything: echo'ing an unquoted variable has already stripped out whitespace – glenn jackman Jun 8 '11 at 10:41
feedback

assignments ignore leading and trailing whitespace and as such can be used to trim

$ var=`echo '   hello'`; echo $var
hello
link|improve this answer
feedback

Here's a trim() function that trims and normalizes whitespace

#!/bin/bash
function trim {
    echo $*
}

echo "'$(trim "  one   two    three  ")'"
# 'one two three'

And another variant that uses regular expressions.

#!/bin/bash
function trim {
    local trimmed="$@"
    if [[ "$trimmed" =~ " *([^ ].*[^ ]) *" ]]
    then 
        trimmed=${BASH_REMATCH[1]}
    fi
    echo "$trimmed"
}

echo "'$(trim "  one   two    three  ")'"
# 'one   two    three'
link|improve this answer
feedback

You can use old-school tr. For example, this returns the number of modified files in a git repository, whitespaces stripped.

MYVAR=`git ls-files -m|wc -l|tr -d ' '`
link|improve this answer
feedback

This trims multiple spaces of the front and end

whatever=${whatever%% *}

whatever=${whatever#* }

link|improve this answer
2  
Your second command should presumably have ## not just #. But in fact these don't work; the pattern you're giving matches a space followed by any sequence of other characters, not a sequence of 0 or more spaces. That * is the shell globbing *, not the usual "0-or-more" regexp *. – dubiousjim Jan 27 '11 at 18:50
feedback

I was researching this same question and could not find a real solution anywhere. So I ended up creating the following functions. Not sure how portable printf is, but the beauty of this solution is you can specify exactly what is "white space" by adding more character codes. If anyone can optimize this so it's smaller please do so. This is my first post on stack overflow.

    iswhitespace()
    {
        n=`printf "%d\n" "'$1'"`
        if (( $n != "13" )) && (( $n != "10" )) && (( $n != "32" )) && (( $n != "92" )) && (( $n != "110" )) && (( $n != "114" )); then
            return 0
        fi
        return 1
    }
    trim()
    {
        i=0
        str="$1"
        while (( i < ${#1} ))
        do
            char=${1:$i:1}
            iswhitespace "$char"
            if [ "$?" -eq "0" ]; then
                str="${str:$i}"
                i=${#1}
            fi
            (( i += 1 ))
        done
        i=${#str}
        while (( i > "0" ))
        do
            (( i -= 1 ))
            char=${str:$i:1}
            iswhitespace "$char"
            if [ "$?" -eq "0" ]; then
                (( i += 1 ))
                str="${str:0:$i}"
                i=0
            fi
        done
        echo "$str"
    }

#call like so
mystring=`trim "$mystring"`
link|improve this answer
feedback
#!/bin/bash

function trim
{
    typeset trimVar
    eval trimVar="\${$1}"
    read trimVar << EOTtrim
    $trimVar
EOTtrim
    eval $1=\$trimVar
}

# Note that the parameter to the function is the NAME of the variable to trim, 
# not the variable contents.  However, the contents are trimmed.


# Example of use:
while read aLine
do
    trim aline
    echo "[${aline}]"
done < info.txt



# File info.txt contents:
# ------------------------------
# ok  hello there    $
#    another  line   here     $
#and yet another   $
#  only at the front$
#$



# Output:
#[ok  hello there]
#[another  line   here]
#[and yet another]
#[only at the front]
#[]
link|improve this answer
feedback
up vote 0 down vote accepted

Sorry everyone, there was a problem elsewhere in my script and I thought that var had a trailing newline in it, but that actually was not the case. Command substitution strips trailing newlines automatically, as mentioned here: http://tldp.org/LDP/abs/html/commandsub.html.

link|improve this answer
2  
it doesn't strip preceding whitespace, however – rogerdpack Apr 15 '10 at 18:27
feedback

Removing spaces to one space:

(text) | fmt -su

link|improve this answer
feedback

I needed to trim whitespace from a script when the IFS variable was set to something else. Relying on perl did the trick:

# trim() { echo $1; } # doesn't seem to work, as it's affected by IFS

trim() { echo "$1" | perl -p -e 's/^\s+|\s+$//g'; }

strings="after --> , <-- before,  <-- both -->  "

OLD_IFS=$IFS
IFS=","
for str in ${strings}; do
  str=$(trim "${str}")
  echo "str= '${str}'"
done
IFS=$OLD_IFS
link|improve this answer
feedback

From Bash Guide section on globbing

To use an extglob in a parameter expansion
#Turn on extended globbing
shopt -s extglob
#Trim leading and trailing whitespace from a variable
x=${x##+([[:space:]])}; x=${x%%+([[:space:]])}
#Turn off extended globbing
shopt -u extglob

link|improve this answer
feedback

Yet another solution with unit tests which trims $IFS from stdin, and works with any input separator (even $'\0'):

ltrim()
{
    # Left-trim $IFS from stdin as a single line
    # $1: Line separator (default NUL)
    local trimmed
    while IFS= read -r -d "${1-}" -u 9
    do
        if [ -n "${trimmed+defined}" ]
        then
            printf %s "$REPLY"
        else
            printf %s "${REPLY#"${REPLY%%[!$IFS]*}"}"
        fi
        printf "${1-\x00}"
        trimmed=true
    done 9<&0

    if [[ $REPLY ]]
    then
        # No delimiter at last line
        if [ -n "${trimmed+defined}" ]
        then
            printf %s "$REPLY"
        else
            printf %s "${REPLY#"${REPLY%%[!$IFS]*}"}"
        fi
    fi
}

rtrim()
{
    # Right-trim $IFS from stdin as a single line
    # $1: Line separator (default NUL)
    local previous last
    while IFS= read -r -d "${1-}" -u 9
    do
        if [ -n "${previous+defined}" ]
        then
            printf %s "$previous"
            printf "${1-\x00}"
        fi
        previous="$REPLY"
    done 9<&0

    if [[ $REPLY ]]
    then
        # No delimiter at last line
        last="$REPLY"
        printf %s "$previous"
        if [ -n "${previous+defined}" ]
        then
            printf "${1-\x00}"
        fi
    else
        last="$previous"
    fi

    right_whitespace="${last##*[!$IFS]}"
    printf %s "${last%$right_whitespace}"
}

trim()
{
    # Trim $IFS from individual lines
    # $1: Line separator (default NUL)
    ltrim ${1+"$@"} | rtrim ${1+"$@"}
}
link|improve this answer
feedback

This does not have the problem with unwanted globbing, also, interior white-space is unmodified.

read var << eof
$var
eof
link|improve this answer
feedback
# Trim whitespace from both ends of specified parameter

trim () {
    read -rd '' $1 <<<"${!1}"
}

# Unit test for trim()

test_trim () {
    local foo="$1"
    trim foo
    test "$foo" = "$2"
}

test_trim hey hey &&
test_trim '  hey' hey &&
test_trim 'ho  ' ho &&
test_trim 'hey ho' 'hey ho' &&
test_trim '  hey  ho  ' 'hey  ho' &&
test_trim $'\n\n\t hey\n\t ho \t\n' $'hey\n\t ho' &&
test_trim $'\n' '' &&
test_trim '\n' '\n' &&
echo passed
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.