我正在尝试使用sed数字后跟一个点(例如3., 355.)和一个空字符串来替换所有模式。所以我尝试:
sed
3.
355.
sed 's/\d+\.//g' file.txt
但它不起作用。这是为什么?
regex sed
regex ×1
sed ×1