View Single Post
  #6 (permalink)  
Old 11-07-2007, 11:13 AM
bar311 bar311 is offline
Member
 
Join Date: Nov 2007
Posts: 7
bar311 is on a distinguished road
Hi use StringBuffer, it's much easier
check this one....

Code:
public static String reverse(String s) { return (new StringBuffer(s)).reverse().toString(); }
Reply With Quote