I am sure that what I am trying to do is very simple but I am new to regex.
I am searching through millions of lines of code. What I need to find are <cffunction>
tags that are missing the output=
attribute. For instance this should match:
<cffunction name="qrySelectQuestions" access="public" returntype="query">
However, this should not:
<cffunction name="qrySelectQuestions" access="public" output="no" returntype="query">
Note, the output
attribute could be anywhere within the tag definition.