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.
我有一个看起来像这样的正则表达式搜索:
'\d*.\d*, \d*.\d*'
我想更改'和,,但保留 d*。这在崇高的文本中可能吗?如果没有,最简单的方法是什么?
'
,
这与大多数其他可以使用正则表达式的地方一样。
将要保留的图案部分分组,并在替换中引用它们
图案:'(\d*.\d*), (\d*.\d*)' 替换:$1 $2
'(\d*.\d*), (\d*.\d*)'
$1 $2
此示例将删除'和,