📄 testregexcompiler.py
字号:
import re
# These statements dont require a AST regular expression node
m = re.search('(?<=-)\w+', 'spam-egg')
print m.group(0)
re.compile("a").match("ba", 1)
re.split('(\W+)', 'Words, words, words.')
re.sub(r'def\s+([a-zA-Z_][a-zA-Z_0-9]*)\s*\(\s*\):', r'static PyObject*\npy_\1(void)\n{', 'def myfunc():')
pattern = '^M?M?M?$'
re.search(pattern, 'M')
def firstMatch(s, regexList):
for match in (regex.search(s) for regex in regexList):
if match:
return match
# some comment after firstMatch
##r
import re
# These statements dont require a AST regular expression node
m = re.search('(?<=-)\w+', 'spam-egg')
print m.group(0)
re.compile("a").match("ba", 1)
re.split('(\W+)', 'Words, words, words.')
re.sub(r'def\s+([a-zA-Z_][a-zA-Z_0-9]*)\s*\(\s*\):', r'static PyObject*\npy_\1(void)\n{', 'def myfunc():')
pattern = '^M?M?M?$'
re.search(pattern, 'M')
def firstMatch(s, regexList):
for match in (regex.search(s) for regex in regexList):
if match:
return match
# some comment after firstMatch
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -