-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringmethods.java
43 lines (36 loc) · 1.38 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
class stringmethods{
public static void main (String args[]){
String s = "abcde";
char ch=s.charAt(3);
System.out.println(ch);
String s1="Neha";
String s2="Joshi";
System.out.println(s1.concat(s2));
int age=9;
System.out.println("I am"+age+"years old");
String s3="four:"+2+2;
System.out.println(s3);
String s4="Four:"+(2+2);
System.out.println(s4);
String s5="football";
System.out.println(s5.endsWith("ball"));
String s6="football";
System.out.println(s6.startsWith("foot"));
String s7="abcde";
String s8="ABCDE";
System.out.println(s7.equals(s8));
String s9="hello";
String s10="HELLO";
System.out.println(s9.equals(s10));
System.out.println(s9.equalsIgnoreCase(s10));
}
}
/*
👋 Hi, I’m @aarushinair - Aarushi Nair (she/her/ella)
👀 I’m a Computer Science Engineering Student
💞️ I’m looking to collaborate on #java, #python, #R, #applicationdevelopment
🌱 #GirlsWhoCode #WomenInTech #WomenInIT #WomenInSTEM #CyberSecurity #QuantumComputing #BlockChain #AI #ML
📫 How to reach me: https://www.linkedin.com/in/aarushinair/
👩🏫 YouTube Channel - Code with Aarushi : https://www.youtube.com/channel/UCKj5T1ELHCmkGKujkpqtl7Q
🙋 Follow me on Twitter: https://twitter.com/aarushinair_
*/