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.
我有很多文件的日期格式,01-Feb-01但需要格式01/02/01。我遇到过月份只有 2 位数字的示例,但我如何处理带有 3 个字母的月份?
01-Feb-01
01/02/01
谢谢。
在我看来,除了每个月在文件中替换 12 次之外,别无他法,正则表达式如下:
找什么:
(\d{2})-jan-(\d{2}) (\d{2})-feb-(\d{2})
用。。。来代替:
\1/01/2 \1/02/2
依此类推(当然,忽略大小写选项)。如果有办法用替换列表替换子模式列表,我很乐意了解它。但现在这就是我所拥有的:)。