我有以下string
str="toto1 toto2 toto3 toto4 toto2 toto5"
toto2
在string中出现两次。 如何从string中删除所有toto2
事件?
我试过这个:
echo ${str/toto2/}
但是这只会消除toto2
的第一次toto2
。
toto1 toto3 toto4 toto2 toto5 # output
我怎样才能从string中删除所有的toto2
?
找到了。 解决方案是:
echo ${str//toto2/}