Getting Started with Java
This is a 100% free course, but we need you to first join or login to watch this video.
Alright, join or login here.This video introduces you to the concept of Strings in Java. A String is a bunch of characters grouped together inside a pair of double quotes. You can create them as literals or objects. You can use methods such as charAt(), indexOf(), substring(), join(), split(), contains(), toUpperCase(), toLowerCase(), equals() and equalsIgnoreCase() to perform a variety of operations on Strings. Use escape sequences to add special characters inside your String objects.