Evthron's blog

正則表達式

排除所有不是 ASCII 的字符

/[^\x00-\x7F]+/

Filetags 搜尋

/-- (?=.*art)(?=.*gallery).*/

Filename

def replacement(title):
    return re.sub(r'[/\\:*<>"|]', '_', title)

Front matter