-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStringMethods.java
55 lines (50 loc) · 1.72 KB
/
StringMethods.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javapep;
/**
*
* @author anil
*/
public class StringMethods {
public static void main(String args[])
{
// String s1="Anil kushwaha";
// String s2="Anil Kushwaha";
// System.out.println(s1.charAt(5));
// System.out.println(s1.toUpperCase());
// System.out.println(s1.toLowerCase());
// System.out.println(s1.indexOf('k'));
// System.out.println(s1.equals(s2));
// System.out.println(s1.equalsIgnoreCase(s2));
// System.out.println(s1.concat(s2));
// System.out.println(s1.compareTo(s2));
// System.out.println(s1.lastIndexOf('a'));
// System.out.println(s1.substring(1,6));
// System.out.println(s1.replace('k','l'));
// System.out.println(s1.trim());
// char arr[]=s2.toCharArray();
// for(int i=0;i<arr.length;i++)
// {
// System.out.println(arr[i]);
// }
// char arr2[]=new char[8];
//
//
// s1.getChars(0,5,arr2,1);//beg of index s1,end index of s2,array name,starting idex of destination array
//
// System.out.println(arr2[6]);
// System.out.println(arr2);
// System.out.println(s1.startsWith("k"));
//
//
//
//
String c = "abc".substring(0,3);
String d = "cde".substring(0, 2);
System.out.println(c);
System.out.println(d);
}
}