Searched refs:origString (Results 1 – 1 of 1) sorted by relevance
338 public String replace(String origString, String origChar, String replaceChar){ in replace() argument340 int index=origString.indexOf(origChar); in replace()343 String first =origString.substring(0,index); in replace()346 origString=origString.substring(index+1,origString.length()); in replace()347 index=origString.indexOf(origChar); in replace()349 tmp=tmp.concat(origString); in replace()358 public String needsMask(String origString){ in needsMask() argument359 if (origString.indexOf("&")!=-1){ in needsMask()360 origString=replace(origString,"&","&"); in needsMask()362 if (origString.indexOf("\"")!=-1){ in needsMask()[all …]