You are on page 1of 1

Sno.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

String Class Methods s1.toLowerCase s1.toUpperCase s1.replace('x','y') s1.trim() s1.equals(s2) s1.equalsIgnoreCase(s2) s1.length() s1.charAt(n) s1.compareTo(s2) s1.concat(s2) s1.substring(n) s1.substring(n,m) String.valueOf(p) p.toString() s1.indexof('x') s1.indexof('x',n) s1.getChars(m,n,arr,index) startsWith() endsWith() equals vs ==

StringBuffer Methods length() capacity() setLength() charAt(n) setCharAt(index, char) insert(index,str) insert(index,char) reverse() delete(sindex,eindex) deleteCharAt(index) replace(sindex, eindex, string) substring(startindex) substring(startindex, endindex) append()

You might also like