Lines Matching refs:gsub
213 gsub(/\\-/,"",Journal) # remove discretionary hyphens
667 gsub(/[^[:alnum:]():,;.\/\-]/,"",label)
676 gsub(/<\/?[^>]*>/,"",s) # remove SGML tags
678 gsub(/&[[:alnum:]]+;/,"",s) # remove SGML entities
848 gsub(/&/,"\\&",s) # NB: this one MUST be first
849 gsub(/</,"\\<",s)
850 gsub(/>/,"\\>",s)
851 gsub(/\"/,"\\"",s)
909 gsub(/[$][$]/,"$$",s) # change display math to triple dollars for split
918 gsub(/[$][$][$]/,"$$",s) # restore display math
928 gsub(/\\&/,"\\&",s) # reduce TeX ampersands to SGML entities
938 gsub(/\\slash +/,"/",s) # replace TeX slashes with conventional ones
939 gsub(/ *\\emdash +/," --- ",s) # replace BibNet emdashes with conventional ones
940 gsub(/\\%/,"%",s) # reduce TeX percents to conventional ones
941 gsub(/\\[$]/,"$",s) # reduce TeX dollars to conventional ones
942 gsub(/\\#/,"#",s) # reduce TeX sharps to conventional ones
946 gsub(/\\&/,"\\&",s) # reduce TeX ampersands to SGML entities
952 gsub(/\\\&/, "\\&", s) # reduce TeX ampersands to conventional ones
955 gsub(/\\[[:lower:]][[:lower:]] +/,"",s) # remove TeX font changes
957 gsub(/\\[^[:alpha:]]/,"",s) # remove remaining TeX control symbols
966 gsub(/^[ \t]+/,"",s)
967 gsub(/[ \t]+$/,"",s)