pseudo code for replacing all 'a' with "the" in a string??
Anoniem
-- pseudo code to replace string contents. String replace(String orig, String old, String new) { StringBuffer sb = new StringBuffer(orig); sb.replace(old,new); return sb.toString(); }