Skip to content

Instantly share code, notes, and snippets.

@rayepeng
Last active March 26, 2020 09:07
Show Gist options
  • Save rayepeng/b24c3eb6efe67e39bc43fcf846c2cbc9 to your computer and use it in GitHub Desktop.
Save rayepeng/b24c3eb6efe67e39bc43fcf846c2cbc9 to your computer and use it in GitHub Desktop.
[python正则表达式]#python#re
In [7]: re.findall(r'(?i)yes', "Yes,yeS,yes")
Out[7]: ['Yes', 'yeS', 'yes']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment