Using dynamo to selected Element ID's via a HTML file

import re

dataEnteringNode = IN
html = IN[0]

exp = r’(?<=id\s)([0-9]*)'
match = re.findall(exp, html)

if match:
OUT = set(match)
else:
OUT = ‘Not Found’