-
Notifications
You must be signed in to change notification settings - Fork 0
/
Strings.java
77 lines (61 loc) · 2.59 KB
/
Strings.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
public class Strings {
/**
* @param args
*/
public static void main(String[] args){
// byte b[]={65,66,67,68,69};
// String st1=new String(b,2,2);
// System.out.println(st1);
// char c[]={'h','e','l','l','o'};
// String st2= new String(c,1,3);
// System.out.println(st2);
// String str1="[email protected]";
// String str2="java";
// int l=str.length();
// String str1=str.toUpperCase();
// String str2=str.trim();
// String str3=str.substring(3,4);
// String str4=str.replace('a','p');
// boolean str5=str.startsWith("Mr.");
// boolean str6=str.endsWith(".com");
// System.out.println( str1.charAt(4));
// System.out.println( str1.indexOf("com"));
// boolean s =str1.equals(str2);
// boolean s =str1.equalsIgnoreCase(str2);
// int s =str1.compareTo(str2);
// System.out.println(str1.matches("."))
// System.out.println(str1.matches("[a-zA-Z]"));
// System.out.println(str1.matches("[a|b]"));
// System.out.println(str1.matches("\\w"));
// System.out.println(str1.matches("\\D"));
// System.out.println(str1.matches(".*"));
// System.out.println(str1.matches("[a-z]*"));
// System.out.println(str1.matches("\\w*@gmail(.*)"));
// System.out.println(str1.indexOf('@'));
// int i=str1.indexOf("@");
// String uname=str1.substring(0,i);
// String domain=str1.substring(i+1,str1.length());
// System.out.println(uname);
// System.out.println(domain);
// System.out.println(domain.startsWith("gmail"));
// int j=domain.indexOf(".");
// System.out.println(j);
// int b=1011011;
// String str=b+"";
// System.out.println(str.matches("[01]*"));
// String str="123AB";
// System.out.println(str.matches("[0-9A-F]*"));
// String str="01/02/2004";
// System.out.println(str.matches("[0-3][0-9]/[01][0-9]/[0-9]{4}"));
// String str="a@b#C$";
// String str1=str.replaceAll("[^a-zA-Z0-9]","");
// System.out.println(str1);
// String str="a b C ghk";
// String str1=str.replaceAll("\\s+","");
// System.out.println(str1);
// String str="a@ b# C$ ";
// String str1=str.replaceAll("\\s+"," ").trim();
// String str2[]=str1.split("\\s");
// System.out.println(str2.length);
}
}