RegEx/C/Include.regex.txt
# Matches C/C++ #include
\#\s{0,} include # Match the include, followed by \s+(?>(?<Include>(\< # A header, enclosed in <>s (?<Header>[\w\.\\\/]+)\> # OR |\" # A Source File, enclosed in ""s (?<SourceFile>[\w\.\\\/]+)\"))) |