Sunday, January 27, 2019

Java Program 1: How to read characters of a String?

String is a character sequence enclosed in double quotes. We can't access its characters one by one like we access the values of an array (a[0], a[1] and etc.) directly.

But we can do it in java in different ways, we will see two approaches in this post.

Method 1: Using CharAt(int i) method

Execute above program and observe below output screenshot, we can see that using CharAt() method we are able to get each character from the given string.


Method 2: Using toCharArray() method

Execute the above program and observe below output screenshot, we have converted the given String first to a Character Array and read the characters one by one using for loop.


#HappyLearning #HappyTesting

3 comments:

  1. This Java program tutorial is a great starting point! Learning how to read characters of a string is a fundamental skill, and this article breaks it down in a way that's easy to follow. Excited to incorporate this knowledge into my Java projects. Thanks for sharing!

    ReplyDelete

DevOps 01: What is DevOps and How it benefits organizations?

DevOps is a culture in an organization, where the development team and operations team help each other by sharing information, process and t...