Regex and unicode

前端 未结 4 534
死守一世寂寞
死守一世寂寞 2020-12-03 04:51

I have a script that parses the filenames of TV episodes (show.name.s01e02.avi for example), grabs the episode name (from the www.thetvdb.com API) and automatically renames

4条回答
  •  悲哀的现实
    2020-12-03 05:17

    Python's re module doesn't support \p{Letter} or \X. However, the new regex implementation on PyPI does.

提交回复
热议问题