我尝试找到自动化的方法来从文本中删除所有这些时间戳
(2:00)
。它们的格式相同,但每次的时间不同。
是否可以使用 Word 工具或 DOS cmd 中的构建来完成?
谢谢 这是我输入的示例
Hi ,bravo I can wait another day (2:17) no more lonely cars (2:24) make
it easy (12:29) hey luck you have all skills (13:33) but it's OK
和想要的输出
Hi ,bravo I can wait another day no more lonely cars make
it easy hey luck you have all skills but it's OK
谢谢大家
使用gsub函数
.gsub(/\(\d{2}:\d{2}\)/, '')