Book Image

Hands-On Automation Testing with Java for Beginners

Book Image

Hands-On Automation Testing with Java for Beginners

Overview of this book

Java is one of the most commonly-used software languages by programmers and developers. Are you from a non-technical background and looking to master Java for your automation needs? Then Hands-On Automation Testing with Java for Beginners is for you. This book provides you with efficient techniques to effectively handle Java-related automation projects. You will learn how to handle strings and their functions in Java. As you make your way through the book, you will get to grips with classes and objects, along with their uses. In the concluding chapters, you will learn about the importance of inheritance and exceptions with practical examples. By the end of this book, you will have gained comprehensive knowledge of Java.
Table of Contents (17 chapters)
Title Page
Copyright and Credits
Packt Upsell
Contributors
Preface
Index

Chapter 3. Handling Strings and Their Functions in Java

In this chapter, we'll talk about strings and have a look at the String class. We will also learn how to define a string and look at the different ways in which we can define a string. We will then discuss the different methods in the String class. Lastly, we will write some simple code to reverse the contents of a string, and we will also check whether or not that reversed string is a palindrome.

We will cover the following topics in this chapter:

  • Introducing strings
  • The String class and its methods
  • Reversing a string's logic