Java

Characters and Strings in Java

Characters and Strings in Java

In Java, characters, and strings are used to represent text. 

Characters 
A character in Java is a single letter, number, or symbol represented by the char data type. Char values are enclosed in single quotes like this: 
Example: 

char c = 'a'; 

One can use escape sequences in Java to use a new line, tab etc. 
Example: 

char newLine = '\n'; 

Strings 
A string in Java is a sequence of characters represented by the String class and is enclosed in double quotes. 
Example: 

String a1 = "Hello"; 
String a2 = "World"; 
String a3 = a1 + ", " + a2 + "!"; // a3 = "Hello, World!" 
String name = "Jane Doed"; 
String firstName = name.substring(0,4); // firstName = "Jane" 
String lastName = name.substring(5); // lastName = "Do" 
String sentence = "The quick brown fox"; 
sentence = sentence.replace("brown", "red"); // sentence = "The quick red fox" 
​​​

Java also provides several built-in methods that can be used to manipulate strings, such as length, trim, toUpperCase, toLowerCase and etc. 
 

Top course recommendations for you

    Docker Swarm Project
    1 hrs
    Beginner
    691 Learners
    4.73  (15)
    Collections in Java
    3 hrs
    Beginner
    3.8K+ Learners
    4.61  (97)
    PyCharm for Beginners
    1 hrs
    Beginner
    2.3K+ Learners
    4.39  (97)
    Git Tutorial
    2 hrs
    Beginner
    8.6K+ Learners
    4.53  (499)
    Create a IPL theme Landing page with CSS and HTML
    1 hrs
    Beginner
    5.9K+ Learners
    4.29  (243)
    PyTest Basics
    2 hrs
    Beginner
    2.3K+ Learners
    4.35  (101)
    Python MySQL
    1 hrs
    Beginner
    9K+ Learners
    4.52  (299)
    Python Automation Project
    2 hrs
    Beginner
    5.8K+ Learners
    4.56  (152)
    Python For Android
    2 hrs
    Beginner
    4.4K+ Learners
    4.48  (83)
    Kivy Projects
    2 hrs
    Beginner
    1.6K+ Learners
    4.51  (39)