Not really a big overhead,
this piece of code wld do that...
public String padApos(String toPad)
{
StringTokenizer tokenizer=new StringTokenizer(toPad,"'");
String retVal=new String("");
while(tokenizer.hasMoreTokens())
{
retVal+=tokenizer.nextToken()+"''";
}
retVal=retVal.substring(0,retVal.length()-2);
return retVal;
}- Handling apostrophes dave . prout
- Re: Handling apostrophes David Treves
- RE: Handling apostrophes Deacon Marcus
- Re: Handling apostrophes Richard Troy
- RE: Handling apostrophes dave . prout
- RE: Handling apostrophes dave . prout
- Re: Handling apostrophes David Treves
- RE: Handling apostrophes Chandramouli Nagarajan
- RE: Handling apostrophes Michael Weissenbacher
- RE: Handling apostrophes Michael Weissenbacher
- RE: Handling apostrophes Chandramouli Nagarajan
- RE: Handling apostrophes dave . prout
- RE: Handling apostrophes Tarek M. Nabil
