Home | History | Annotate | Download | only in awk

Lines Matching full:substr

55         $0 = substr($0, _xml_p) # remove anything before '<'
63 if (substr($0, 1, 2) == "</") { # is it a closing tag ?
65 $0 = substr($0, 3);
68 $0 = substr($0, 2);
92 if (substr($0,1,2) == "=\"") { # value is ="something"
93 _xml_value = substr($0,3);
96 } else if (substr($0,1,2) == "='") { # value is ='something'
97 _xml_value = substr($0,3);
129 _xml_expected = substr(XML_RPATH, 1, _xml_p-1);
132 XML_RPATH = substr(XML_RPATH, _xml_p+1);