📜  sed 替换号码 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:12.992000             🧑  作者: Mango

代码示例2
Just use one of following commands for replacing a number of:
sed "s/[0-9]//" f.txt    #One single digit as 1
sed "s/[0-9]\+//" f.txt #Further digits as 837, specifying match repetition "\+"
sed "s/[0-9]\+\.[0-9]\+]//" file.txt #Float type with decimals