我读了Bash : extracting part of a string
如果没有字符串中的所有匹配项,我怎么能做到这一点:

x=something
echo ${x ome}
        ^
     what to put here to get "sthing"

如有其他建议,我们将不胜感激。

最佳答案

不,第一个答案不对。所有匹配项都将被删除。因此,答案是:

echo ${x//ome/}

(请参阅手册。)

10-06 05:36