Monday, December 29, 2014

Java Tutorial For Beginners 15 - Java String

2:06 PM











1
2
3
4
5
6
7
8
9
10
11
12
package lesson1;
public class MyClass {

public static void main(String[] args) {
String myString = "Hello e World e";
int myStringLegth = myString.length();
String myStringinCase = myString.toUpperCase();

System.out.println(myString.indexOf('o'));
}

}





Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top