-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringTestScript.java
More file actions
82 lines (44 loc) · 1.29 KB
/
StringTestScript.java
File metadata and controls
82 lines (44 loc) · 1.29 KB
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
78
79
80
81
82
package com.testing250.JavaDay2;
public class StringTestScript {
public static void main(String[] args) {
StringTestLib obj = new StringTestLib();
StringTestScript obj1 = new StringTestScript();
obj1.CountWorrdsInString();
obj.StringDisplay("test");
String res4=obj.StringConcat();
System.out.println(res4);
boolean r=obj.IgnoreCase();
System.out.println(r);
obj.CheckSubString();
obj.CheckPhoneNum();
obj1.CheckEmpty();
obj1.ConvertToCharArray();
obj1.SubStrDemo();
}
public void CountWorrdsInString() {
String value = "Hello There I am using facebook";
String val[]=value.split(" ",4);
//System.out.println(val.length);
for(String p1:val) {
System.out.println(p1);
}
}
public void CheckEmpty() {
String val = "";
if(val.isEmpty()) {
System.out.println("Empty string");
}
}
public void ConvertToCharArray() {
String val4 = "Testing 250";
char val6[] = val4.toCharArray();
for(char ch:val6) {
System.out.print(ch+ " ");
}
}
public void SubStrDemo() {
String valk = "Test data is completed";
String pp= valk.substring(4, 9);
System.out.println(pp);
}
}