Home | History | Annotate | Download | only in awk

Lines Matching refs:substr

117         $0 = substr($0, _xml_p) # remove anything before '<'
125 if (substr($0, 1, 2) == "</") { # is it a closing tag ?
127 $0 = substr($0, 3);
130 $0 = substr($0, 2);
154 if (substr($0,1,2) == "=\"") { # value is ="something"
155 _xml_value = substr($0,3);
158 } else if (substr($0,1,2) == "='") { # value is ='something'
159 _xml_value = substr($0,3);
191 _xml_expected = substr(XML_RPATH, 1, _xml_p-1);
194 XML_RPATH = substr(XML_RPATH, _xml_p+1);