Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

Strings

Java Strings

Strings are employed to store textual data.

A String variable encompasses a sequence of characters enclosed within double quotes.

Example

Declare a variable of type String and initialize it with a value.

String greeting = "Hello";

String Length

In Java, a String is an object that incorporates methods capable of executing various operations on strings. For instance, you can determine the length of a string using the length() method.

Example

String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
System.out.println("The length of the txt string is: " + txt.length());

More String Methods

Numerous string methods are accessible, such as toUpperCase() and toLowerCase().

Example

String txt = "Hello World";
System.out.println(txt.toUpperCase());   // Outputs "HELLO WORLD"
System.out.println(txt.toLowerCase()); // Outputs "hello world"

Finding a Character in a String

The indexOf() method provides the position of the initial occurrence of a specified text within a string, considering whitespace as well.

Example

String txt = "Please locate where 'locate' occurs!";
System.out.println(txt.indexOf("locate")); // Outputs 7

In Java, positions within a string are counted starting from zero.

This means that 0 represents the first position, 1 the second, 2 the third, and so forth.

Complete String Reference

To access a comprehensive guide on String methods in Java, visit our Java String Methods Reference.

This resource includes detailed explanations and examples for each string method.