fork(1) download
  1. import re
  2. s=r"""D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E01.WEBRip.Netflix.en[cc].srt
  3. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E02.WEBRip.Netflix.en[cc].srt
  4. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E03.WEBRip.Netflix.en[cc].srt
  5. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E04.WEBRip.Netflix.en[cc].srt
  6. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E05.WEBRip.Netflix.en[cc].srt
  7. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E06.WEBRip.Netflix.en[cc].srt
  8. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E07.WEBRip.Netflix.en[cc].srt
  9. D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E08.WEBRip.Netflix.en[cc].srt
  10. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E01.WEBRip.Netflix.ja.srt
  11. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E02.WEBRip.Netflix.ja.srt
  12. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E03.WEBRip.Netflix.ja.srt
  13. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E04.WEBRip.Netflix.ja.srt
  14. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E05.WEBRip.Netflix.ja.srt
  15. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E06.WEBRip.Netflix.ja.srt
  16. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E07.WEBRip.Netflix.ja.srt
  17. D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E08.WEBRip.Netflix.ja.srt
  18. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E01.WEBRip.Netflix.zh-Hant.srt
  19. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E02.WEBRip.Netflix.zh-Hant.srt
  20. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E03.WEBRip.Netflix.zh-Hant.srt
  21. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E04.WEBRip.Netflix.zh-Hant.srt
  22. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E05.WEBRip.Netflix.zh-Hant.srt
  23. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E06.WEBRip.Netflix.zh-Hant.srt
  24. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E07.WEBRip.Netflix.zh-Hant.srt
  25. D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E08.WEBRip.Netflix.zh-Hant.srt"""
  26.  
  27. s2=r"""EP01 雷霆的話.MP4
  28. EP02 一無所有的公主.MP4
  29. EP03 無處之地.MP4
  30. EP04 本書結尾的怪獸.MP4
  31. EP05 火誡.MP4
  32. EP06 騎士、死亡和魔鬼.MP4
  33. EP07 說出來.MP4
  34. EP08 對弈.MP4"""
  35.  
  36. a=sorted([_ for _ in list(filter(None, s.split('\n')))])
  37. b=sorted([_ for _ in list(filter(None, s2.split('\n')))], key=lambda _:re.match(r"(?P<p>EP?\d+\s?)?(?P<n>.*?)\..*", _).group('p'))
  38.  
  39. for i, _ in enumerate(a):
  40. print('ren "{}" "{}{}"\n'.format(_,b[i%len(b)],re.match(r".*?(?P<f>(?:.(?!\.))+$)",_).group('f')))
  41.  
Success #stdin #stdout 0.02s 9620KB
stdin
Standard input is empty
stdout
ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E01.WEBRip.Netflix.en[cc].srt" "EP01 雷霆的話.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E02.WEBRip.Netflix.en[cc].srt" "EP02 一無所有的公主.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E03.WEBRip.Netflix.en[cc].srt" "EP03 無處之地.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E04.WEBRip.Netflix.en[cc].srt" "EP04 本書結尾的怪獸.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E05.WEBRip.Netflix.en[cc].srt" "EP05 火誡.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E06.WEBRip.Netflix.en[cc].srt" "EP06 騎士、死亡和魔鬼.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E07.WEBRip.Netflix.en[cc].srt" "EP07 說出來.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\en[cc]\DOTA:龍之血.S01E08.WEBRip.Netflix.en[cc].srt" "EP08 對弈.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E01.WEBRip.Netflix.ja.srt" "EP01 雷霆的話.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E02.WEBRip.Netflix.ja.srt" "EP02 一無所有的公主.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E03.WEBRip.Netflix.ja.srt" "EP03 無處之地.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E04.WEBRip.Netflix.ja.srt" "EP04 本書結尾的怪獸.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E05.WEBRip.Netflix.ja.srt" "EP05 火誡.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E06.WEBRip.Netflix.ja.srt" "EP06 騎士、死亡和魔鬼.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E07.WEBRip.Netflix.ja.srt" "EP07 說出來.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\ja\DOTA:龍之血.S01E08.WEBRip.Netflix.ja.srt" "EP08 對弈.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E01.WEBRip.Netflix.zh-Hant.srt" "EP01 雷霆的話.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E02.WEBRip.Netflix.zh-Hant.srt" "EP02 一無所有的公主.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E03.WEBRip.Netflix.zh-Hant.srt" "EP03 無處之地.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E04.WEBRip.Netflix.zh-Hant.srt" "EP04 本書結尾的怪獸.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E05.WEBRip.Netflix.zh-Hant.srt" "EP05 火誡.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E06.WEBRip.Netflix.zh-Hant.srt" "EP06 騎士、死亡和魔鬼.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E07.WEBRip.Netflix.zh-Hant.srt" "EP07 說出來.MP4.srt"

ren "D:\Video\DOTA:龍之血\subtitles\zh-Hant\DOTA:龍之血.S01E08.WEBRip.Netflix.zh-Hant.srt" "EP08 對弈.MP4.srt"