0% found this document useful (0 votes)
10 views4 pages

Strings

Uploaded by

220701299
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views4 pages

Strings

Uploaded by

220701299
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

String s1 = “Welcome”;

String s2 = “Welcome”;
s2 = s1;

S1 = s1 + “Tamil”;  “Welcome” + “Tamil”  Welcome Tamil


No Method Description
.

1 char charAt(int index) It returns char value for the particular index

2 int length() It returns string length

3 static String format(String format, Object... It returns a formatted string.


args)
4 static String format(Locale l, String format, It returns formatted string with given locale.
Object... args)

5 String substring(int beginIndex) It returns substring for given begin index.

6 String substring(int beginIndex, int It returns substring for given begin index and end index.
endIndex)

7 boolean contains(CharSequence s) It returns true or false after matching the sequence of char
value.

8 static String join(CharSequence delimiter, It returns a joined string.


CharSequence... elements)

9 static String join(CharSequence delimiter, It returns a joined string.


Iterable<? extends CharSequence>
elements)

10 boolean equals(Object another) It checks the equality of string with the given object.

11 boolean isEmpty() It checks if string is empty.

12 String concat(String str) It concatenates the specified string.

13 String replace(char old, char new) It replaces all occurrences of the specified char value.

14 String replace(CharSequence old, It replaces all occurrences of the specified CharSequence.


CharSequence new)

15 static String equalsIgnoreCase(String It compares another string. It doesn't check case.


another)

16 String[] split(String regex) It returns a split string matching regex.

17 String[] split(String regex, int limit) It returns a split string matching regex and limit.

18 String intern() It returns an interned string.

19 int indexOf(int ch) It returns the specified char value index.

20 int indexOf(int ch, int fromIndex) It returns the specified char value index starting with given
index.

21 int indexOf(String substring) It returns the specified substring index.

22 int indexOf(String substring, int fromIndex) It returns the specified substring index starting with given index.

23 String toLowerCase() It returns a string in lowercase.

24 String toLowerCase(Locale l) It returns a string in lowercase using specified locale.

25 String toUpperCase() It returns a string in uppercase.

26 String toUpperCase(Locale l) It returns a string in uppercase using specified locale.

27 String trim() It removes beginning and ending spaces of this string.

28 static String valueOf(int value) It converts given type into string. It is an overloaded method.

You might also like