Searched refs:origString (Results 1 – 1 of 1) sorted by relevance
337 public String replace(String origString, String origChar, String replaceChar){ in replace() argument339 int index=origString.indexOf(origChar); in replace()342 String first =origString.substring(0,index); in replace()345 origString=origString.substring(index+1,origString.length()); in replace()346 index=origString.indexOf(origChar); in replace()348 tmp=tmp.concat(origString); in replace()357 public String needsMask(String origString){ in needsMask() argument358 if (origString.indexOf("&")!=-1){ in needsMask()359 origString=replace(origString,"&","&"); in needsMask()361 if (origString.indexOf("\"")!=-1){ in needsMask()[all …]