Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何删除某些分隔符之间的所有文本。
例子:
hello;you;are;nice
返回:
hello;you;nice
在 sed 中,我知道如何删除第一个定界符之前和最后一个定界符之后的文本,但不知道其他...
一如既往地感谢大家。
这是相当直截了当的sed
sed
sed "s/\w*;//3"
使用 cut 怎么样 -
cut -d; -f2-3
awk -F\; -v OFS=";" '{print $1,$2,$4}' file