MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / fullmatch

Function fullmatch

tools/python-3.11.9-amd64/Lib/re/__init__.py:168–171  ·  view source on GitHub ↗

Try to apply the pattern to all of the string, returning a Match object, or None if no match was found.

(pattern, string, flags=0)

Source from the content-addressed store, hash-verified

166 return _compile(pattern, flags).match(string)
167
168def fullmatch(pattern, string, flags=0):
169 """Try to apply the pattern to all of the string, returning
170 a Match object, or None if no match was found."""
171 return _compile(pattern, flags).fullmatch(string)
172
173def search(pattern, string, flags=0):
174 """Scan through string looking for a match to the pattern, returning

Callers

nothing calls this directly

Calls 1

_compileFunction · 0.70

Tested by

no test coverage detected