Bash:用等于单词长度的空格替换单词

时间:2017-05-04 08:49:24

标签: string bash parameter-expansion

我认为我的bash-fu足够强大,但显然不是。我似乎无法弄清楚这一点。我想做这样的事情:

  var="XXXX This is a line"
  word_to_replace="XXXX"
  # ...do something
  echo "Done:${var}"
  Done:     This is a line

基本上我想用空格快速替换单词中的所有字符,最好是一步。注意,如果它使事情变得容易var当前将在字符串的开头,尽管它可能有前导空格(需要保留)。

在python中我可能会这样做:

>>> var="XXXX This is a line"
>>> word_to_replace="XXXX"
>>> var=var.replace(word_to_replace, ' '*len(word_to_replace))
>>> print("Done:%s" % var)
Done:     This is a line

4 个答案:

答案 0 :(得分:2)

这是使用shell参数扩展和sed命令组合的一种方法。

$ var="XXXX This is a line"
$ word_to_replace="XXXX"
$ replacement=${word_to_replace//?/ }
$ sed "s/$word_to_replace/$replacement/" <<<"$var"
     This is a line

?匹配任何字符,${var//find/replace}进行全局替换,因此变量$replacement的长度与$word_to_replace相同,但仅由空格组成。

您可以通常的方式将结果保存到变量中:

new_var=$(sed "s/$word_to_replace/$replacement/" <<<"$var")

答案 1 :(得分:1)

简单的Bash:

如果我们知道要替换的词:

$ line=" foo and some"
$ word=foo
$ spaces=$(printf "%*s" ${#word} "")
$ echo "${line/$word/$spaces}"
     and some

如果我们不这样做,我们可以将字符串分开以找到主要字词,但这有点难看:

xxx() {
   shopt -s extglob              # for *( )
   local line=$1
   local indent=${line%%[^ ]*}   # the leading spaces
   line=${line##*( )}            # remove the leading spaces
   local tail=${line#* }         # part after first space 
   local head=${line%% *}        # part before first space...
   echo "$indent${head//?/ } $tail"  # replace and put back together
}
$ xxx "  word on a line"
        on a line

如果该行只有一个单词,headtail都设置为该单词,那也会失败,我们需要检查是否有空格并处理这两个单词案件分开。

答案 2 :(得分:0)

我使用GNU Awk:

echo "$title" | gawk '{gsub(/./, "*"); print}'

用星号替换每个字符。

编辑。合并答案:

$ export text="FOO hello"
$ export sub="FOO"
$ export space=${sub//?/ }
$ echo "${text//$sub/$space}"
    hello

答案 3 :(得分:0)

使用sed

#!/usr/bin/env sh

word_to_replace="XXXX"
var="$word_to_replace This is a line"

echo "Done: $var"

word_to_replace=$(echo "$word_to_replace" | sed 's,., ,g')
var="$word_to_replace This is a line"
echo "Done: $var"