Home | History | Annotate | Download | only in awk

Lines Matching refs:substr

58         $0 = substr($0, _xml_p) # remove anything before '<'
66 if (substr($0, 1, 2) == "</") { # is it a closing tag ?
68 $0 = substr($0, 3);
71 $0 = substr($0, 2);
95 if (substr($0,1,2) == "=\"") { # value is ="something"
96 _xml_value = substr($0,3);
99 } else if (substr($0,1,2) == "='") { # value is ='something'
100 _xml_value = substr($0,3);
132 _xml_expected = substr(XML_RPATH, 1, _xml_p-1);
135 XML_RPATH = substr(XML_RPATH, _xml_p+1);