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.
我想使用正则表达式在 MS Word 2016 中查找/替换以更正成绩单中的一些时间码。我在“查找和替换”菜单中工作,并选中了“使用通配符”。
原始时间码格式为 [##:##:## : ##]
我想用 [##:##:##.##] 替换它们
所以我正在寻找: ##] 并替换为. ##]
(我知道我可以在 Python 等中做到这一点,但我宁愿在 Word 2016 中做到这一点。)
您可以使用通配符查找/替换,其中:
查找 = :([0-9]{2}\])
替换 = .\1
如果您经常这样做,您可能需要为它录制一个宏。