Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Day 24 - String Handling

📚 What You'll Learn Today

  • String methods and manipulation
  • String immutability
  • StringBuilder and StringBuffer
  • String comparison and searching

🎯 Key Concepts

  • String Methods: length(), charAt(), substring()
  • Immutability: Strings cannot be changed
  • StringBuilder: Mutable string class
  • String Comparison: equals() vs ==

📁 Files in This Day

  1. StringHandlingDemo.java - Example of string handling

🚀 How to Run

  1. Compile: javac StringHandlingDemo.java
  2. Run: java StringHandlingDemo

💡 Exercises

  1. Manipulate strings using various methods
  2. Use StringBuilder for string concatenation

Next Day: Day 25 - Arrays Deep Dive