String in Java | Non Primitive Data Type | Java Tutorials

Published: 17 January 2025
on channel: WishInfinite
31
3

#java #javaprogramming #javatutorial #javaprogramming

What is String in Java
Java Strings are Immutable - Here's What That Actually Means
Java Tutorial: Introduction to Strings
Strings In Java
Java for Beginners

Java, Java Tutorials, Java Course
#LearnJava #JavaTutorials #CodingInJava #JavaDevelopment #JavaForBeginners #JavaCourse #JavaLearning #JavaCode #JavaLessons
===============================================================================

Chapters

00:00 - Introduction
00:23 - Create String
04:39 - Methods / Functions of String
15:56 - Immutable String
16:38 - 2nd way to create String
18:14 - String Interview Questions
19:12 - Assignment
19:55 - Recap

================================================================================


Join this channel to get access to perks -    / @wishinfinite  

Java Playlist -    • Java Tutorials for Beginners (2025)  

Java Shorts Playlist -    • Learn Java in 60 Seconds / Quick Tips & Tr...  

Java Quiz -    / @wishinfinite  

WishInfinite GitHub Profile - https://github.com/Wish-Infinite

Java GitHub Repository - https://github.com/Wish-Infinite/java...

Selenium With Java Playlist -    • Selenium with Java Tutorial | Selenium Web...  

Selenium With Java Shorts Playlist -    • Learn Selenium in 60 Seconds  

Playwright with TypeScript / JavaScript Series -    • Playwright Tutorial 2026 [FREE Full Course...  

Learn Playwright in 60 Seconds (Shorts Playlist) -    • Learn Playwright in 60 Seconds  



========================================================================

String (Non Primitive Data Type) | Java Tutorials

String name = "WishInfinite";
String message = "Welcome to My Channel ";
String name2 = new String("WishInfinite");


System.out.println(name);
System.out.println(message);


int len = name.length();
System.out.println(len);


String fullMessage = message.concat(name);
System.out.println(fullMessage);


String fullName2 = message + name;
System.out.println(fullName2);


char val = message.charAt(3);
System.out.println(val);


String newMessage = message.replace('l','d');
System.out.println(newMessage);


String subMessage = message.substring(1,10);
System.out.println(subMessage);


On this page of the site you can watch the video online String in Java | Non Primitive Data Type | Java Tutorials with a duration of hours minute second in good quality, which was uploaded by the user WishInfinite 17 January 2025, share the link with friends and acquaintances, this video has already been watched 31 times on youtube and it was liked by 3 viewers. Enjoy your viewing!