meta data for this page
re
Find MAC address in multiline output
from re import search, MULTILINE match = search(r"(?:[0-9A-Fa-f]{2}[:-]){5}(?:[0-9A-Fa-f]{2})", out, MULTILINE) if match: return match.group(0)
jump to: Search / User Tools / Main Content / Change Content Width
niziak.spox.org
from re import search, MULTILINE match = search(r"(?:[0-9A-Fa-f]{2}[:-]){5}(?:[0-9A-Fa-f]{2})", out, MULTILINE) if match: return match.group(0)
Except where otherwise noted, content on this wiki is licensed under the following license: GNU Free Documentation License 1.3