在Notepad ++中用逗号替换逗号

时间:2017-02-02 07:34:42

标签: regex notepad++

我正在使用Notepad ++,并希望用点替换数字之间的逗号。 如下面的文本文件:

<00> 00:00:00,166 - &gt; 00:00:03999 在本节中,我们将介绍

应如下所示:

<00> 00:00:00.166 - &gt; 00:00:03.999 在本节中,我们将介绍

由于

1 个答案:

答案 0 :(得分:4)

试试这个:

查找

.

替换为:

(?<=\d) - Positive look behind for a digit char
(?=\d) - Positive look ahead for a digit char

这是截图。确保选择正则表达式单选按钮(箭头指向)。     enter image description here 正则表达式:

allowsCameraControl

演示:

https://regex101.com/r/iw1XsV/1