Home | History | Annotate | Download | only in awk

Lines Matching full:substr

113         $0 = substr($0, _xml_p) # remove anything before '<'
121 if (substr($0, 1, 2) == "</") { # is it a closing tag ?
123 $0 = substr($0, 3);
126 $0 = substr($0, 2);
150 if (substr($0,1,2) == "=\"") { # value is ="something"
151 _xml_value = substr($0,3);
154 } else if (substr($0,1,2) == "='") { # value is ='something'
155 _xml_value = substr($0,3);
187 _xml_expected = substr(XML_RPATH, 1, _xml_p-1);
190 XML_RPATH = substr(XML_RPATH, _xml_p+1);