Skip to content

Instantly share code, notes, and snippets.

@MerleLiuKun
Created April 8, 2021 10:25
Show Gist options
  • Save MerleLiuKun/f890d3f107ad05b0cae76a8caee4ef45 to your computer and use it in GitHub Desktop.
Save MerleLiuKun/f890d3f107ad05b0cae76a8caee4ef45 to your computer and use it in GitHub Desktop.
Regex Demo
import re
# 获取 script 标签中的变量数据 ex: var abc = {data: {"actionModule": "abc"}};
get_script_var_re = re.compile('var abc = (.*?};)?')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment