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.
我知道我可以使用以下方法匹配非数字:
sed 's/[^0-9]//g'
但是我如何匹配除正斜杠之外的非数字?
先感谢您。
〜克里斯
我如何匹配除正斜杠以外的非数字?
当我这样改写问题时,我发现更容易考虑这一点:
我如何匹配除数字和正斜杠之外的所有内容?
为此,只需将正斜杠添加到字符类:
sed 's/[^0-9/]//g'
这就是说您要匹配除数字和正斜杠之外的所有内容。
也许是这样:
sed 's/[^0-9/]|//g'