Home | History | Annotate | Download | only in awk

Lines Matching refs:substr

43         $0 = substr($0, _xml_p) # remove anything before '<'
51 if (substr($0, 1, 2) == "</") { # is it a closing tag ?
53 $0 = substr($0, 3);
56 $0 = substr($0, 2);
80 if (substr($0,1,2) == "=\"") { # value is ="something"
81 _xml_value = substr($0,3);
84 } else if (substr($0,1,2) == "='") { # value is ='something'
85 _xml_value = substr($0,3);
117 _xml_expected = substr(XML_RPATH, 1, _xml_p-1);
120 XML_RPATH = substr(XML_RPATH, _xml_p+1);
202 # $0 = substr($0, p+1); # remove anything before the '<' in record
232 # if (substr($0, 1, 2) == "</") {
234 # $0 = substr($0, 3);
237 # $0 = substr($0, 2);
281 # if (substr($0,1,2) == "=\"") { # if $0 begins with ="
282 # _xml_value = substr($0,3); # extract value
285 # } else if (substr($0,1,2) == "='") { # if $0 begins with ='
286 # _xml_value = substr($0,3); # extract value