new string in java code example

Example 1: how to make a string java

String newString = "Hello World";

Example 2: declare String in java

String stringName = "your string content";

Example 3: string in java

In java, string is an object. It is sequence of character values enclosed by 
double quotes.

Example 4: string method example in java

public boolean contains(“searchString”)

String x =Java is programming language”;
System.out.println(x.contains(Amit)); // This will print false
System.out.println(x.contains(Java)); // This will print true

Tags:

Java Example