RegEx/OpenSCAD/Include.regex.txt

# Matches Open SCAD Modules
(?m) # Set Multiline mode. Then,
^include # match the literal 'include'
\s+ # and the obligitory whitespace.
\<(?<Include>[^\>]+)\>