Java - String Class: Creating Strings
Java - String Class: Creating Strings
http://www.tutorialspoint.com/java/java_strings.htm
Copyright tutorialspoint.com
Strings, which are widely used in Java programming, are a sequence of characters. In the Java programming language,
strings are objects.
The Java platform provides the String class to create and manipulate strings.
Creating Strings:
The most direct way to create a string is to write:
String greeting = "Hello world!";
Whenever it encounters a string literal in your code, the compiler creates a String object with its valuein this case,
"Hello world!'.
As with any other object, you can create String objects by using the new keyword and a constructor. The String class
has eleven constructors that allow you to provide the initial value of the string using different sources, such as an array
of characters:
public class StringDemo{
public static void main(String args[]){
char[] helloArray = { 'h', 'e', 'l', 'l', 'o', '.'};
String helloString = new String(helloArray);
System.out.println( helloString );
}
}
Note: The String class is immutable, so that once it is created a String object cannot be changed. If there is a necessity
to make alot of modifications to Strings of characters then you should use String Buffer & String Builder Classes.
String Length:
Methods used to obtain information about an object are known as accessor methods. One accessor method that you can
use with strings is the length() method, which returns the number of characters contained in the string object.
After the following two lines of code have been executed, len equals 17:
public class StringDemo {
public static void main(String args[]) {
String palindrome = "Dot saw I was Tod";
int len = palindrome.length();
System.out.println( "String Length is : " + len );
}
}
Concatenating Strings:
The String class includes a method for concatenating two strings:
string1.concat(string2);
This returns a new string that is string1 with string2 added to it at the end. You can also use the concat() method with
string literals, as in:
"My name is ".concat("Zara");
String Methods:
Here is the list methods supported by String class:
SN
int compareTo(Object o)
Compares this String to another Object.
10
11
12
byte getBytes()
Encodes this String into a sequence of bytes using the platform's default charset, storing the result into a new
byte array.
13
14
15
int hashCode()
Returns a hash code for this string.
16
17
18
Returns the index within this string of the first occurrence of the specified substring.
19
20
String intern()
Returns a canonical representation for the string object.
21
22
23
24
25
int length()
Returns the length of this string.
26
27
boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
Tests if two string regions are equal.
28
29
30
31
32
33
34
35
36
38
39
char[] toCharArray()
Converts this string to a new character array.
40
String toLowerCase()
Converts all of the characters in this String to lower case using the rules of the default locale.
41
42
String toString()
This object (which is already a string!) is itself returned.
43
String toUpperCase()
Converts all of the characters in this String to upper case using the rules of the default locale.
44
45
String trim()
Returns a copy of the string, with leading and trailing whitespace omitted.
46