Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconTop 13 String Functions in Java | Java String [With Examples]

Top 13 String Functions in Java | Java String [With Examples]

Last updated:
19th Feb, 2021
Views
Read Time
6 Mins
share image icon
In this article
Chevron in toc
View All
Top 13 String Functions in Java | Java String [With Examples]

String functions are the backbone of any coding language, and the versatile nature of these functions provided by Java is the best. So let us discuss the common string functions and their applications.

How to read a line from the console:  use nextLine method

Check out our free courses to get an edge over the competition.

Scanner in = new Scanner(System.in);

Ads of upGrad blog

String line = in.nextLine();

1. Indexing

We can access the character of a string using charAt(int pos) method.

ex:

String h = “hello world”;

System.out.println(h.charAt(4));

Check out upGrad’s Advanced Certification in Cyber Security

2. Getting a Position

This is the most frequent operation performed during string manipulation.

1. If you need position of any symbol, use indexOf(). It returns a numeric value (position) of a symbol.

ex: 

String para=”Batman is protector of gotham”;

int pos1 = para.indexOf(‘a’); //  1

int pos2 = para.indexOf(‘z’) // -1

Check out upGrad’s Advanced Certification in Blockchain

2. The java string lastIndexOf() method returns the last index of the given character value or substring. If it is not found, it returns -1. The index counter starts from zero.

ex:

String para=”Batman is protector of gotham”;

int pos = para.lastIndexOf(‘a’); // 27

int pos2 = para.indexOf(‘z’) // -1

3. Pattern Matching

The java string contains() method searches the sequence of characters in the string. It returns true if a sequence of char values are found in this string otherwise returns false.

ex:

String name=”Batman is protector of gotham”;  

System.out.println(name.contains(“man is”));  // true

System.out.println(name.contains(“of gotham”));  // true

System.out.println(name.contains(“protector of metropolis”)); // false

Explore our Popular Software Engineering Courses

4. Checking Prefix and Suffixes

1. startsWith()  :

String s=”Optimus Prime”;

System.out.println(s.startsWith(“Op”));//true

2. endsWith() :

String s=”Optimus Prime”;

System.out.println(s.endsWith(“me”));//true

Explore Our Software Development Free Courses

5. Converting Other Data Types to String

This can be done by Java String valueOf() method. It converts given types such as int, long, float, double, boolean, char and char array into string.

ex:

int number=100;  // similarly we can convert another data types too

String str=String.valueOf(number);

System.out.println(str+10);

6. If Length of a String is Needed

Use the length() method of the string. It returns a count of the total number of characters.

ex:

String h = “hello world”;

int size = h.length()

7. To Check Whether a String is Empty

The java string isEmpty() method checks if this string is empty or not. It returns true, if the length of string is 0 otherwise false.

ex:

String s1=””;

String s2=”coding is divine”;

System.out.println(s1.isEmpty());  // print true

System.out.println(s2.isEmpty());  // print false

In-Demand Software Development Skills

8. Getting Substring

If you need a subpart of String then java provides an elegant way of doing this by the following methods.

1. substring(int beginIndex): This method returns a new string that is a substring of this string. The substring begins with the character at the specified index and extends to the end of this string.

ex:

String str = “Hello World”;

String firstPart = str.substring(4);

2. substring(int beginIndex, int endIndex): The substring begins at the specified beginIndex and extends to the character at index endIndex – 1. Thus the length of the substring is (endIndex – beginIndex).

ex:

String str = “Hello World”;

String new_string = str.substring(1,6); // remember [ firstindex,lastindex )

9. If Want to Compare Two Different Strings

1. equals() method: It compares the two given strings based on the content of the string. If any character is not matched, it returns false. If all characters are matched, it returns true.

ex:

String s1=”Freelancer”;

String s2=”Freelancer”;

String s3=”freelancer”;

String s4=”java”;

System.out.println(s1.equals(s2));//true because content and case is same

System.out.println(s1.equals(s3));//false because case is not same

System.out.println(s1.equals(s4));//false because content is not same

2. String.equalsIgnoreCase(): The String.equalsIgnoreCase() method compares two strings irrespective of the case (lower or upper) of the string. This method returns true if the argument is not null and the contents of both the Strings are the same ignoring case, else false.

ex:

String s1=”Freelancer”;  

String s2=”Freelancer”;  

String s3=”freeLancer”;  

String s4=”java”;  

System.out.println(s1.equalsIgnoreCase(s2));//true because content and case is same  

System.out.println(s1.equalsIgnoreCase(s3));//true because content same but cases are not same  

System.out.println(s1.equalsIgnoreCase(s4));//false because content is not same

10. If We Want to Join Two Different Strings

Java provides the best method to join different strings by using concat method.

ex:

String s1=”love is immortal”;

String s2=” and coding is divine “;

String joined_string = s1.concat(s2);

System.out.println(joined_string); // prints love is immortal and coding is divine

Read our Popular Articles related to Software Development

11. If We Want to Change and Modify a String by Using Another String

We can use the replace() method using two ways.

1. replacing characters of string by another string’s character

ex:

String s1=”Every human can be extraordinary”;

String replacedString=s1.replace(‘a’,’e’);//replaces all occurrences of ‘a’ to ‘e’

System.out.println(replacedString);

2. replace words of a string with words of another string

ex:

String s1=” java can be replaced by python and it can lose its charm”;

String replaceString=s1.replace(“can”,”cannot”);//replaces all occurrences of “can” to “cannot”

System.out.println(replaceString);

12. Changing Cases of a String

1. string toLowerCase(): method returns the string in the lowercase letter. In other words, it converts all characters of the string into lower case letters.

ex:

String temp=”This is Uppercase And Lower Case String “;

String temp_lower=temp..toLowerCase();

System.out.println(temp_lower); //  “this is uppercase and lower case string “

2. Java string toUpperCase()  : method returns the string in uppercase letter. In other words, it converts all characters of the string into upper case letters.

ex:

String temp=”This is Uppercase And Lower Case String “;

String temp_upper=temp.toUpperCase();

System.out.println(temp_upper);   // “THIS IS UPPERCASE AND LOWER CASE STRING”

13. Eliminates Leading and Trailing Spaces

The java string trim() method eliminates leading and trailing spaces. Note: The string trim() method doesn’t omit middle spaces.

ex:

String s1=”  hello string   “;

System.out.println(s1+”coder”);//without trim()

String trimmed_string = s1.trim();

Ads of upGrad blog

System.out.println(trimmed_string+”coder”);//with trim()

Learn Software Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Conclusion

If you’re interested to learn more about Java, OOPs & full-stack software development, check out upGrad & IIIT-B’s Executive PG Program in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

Profile

Rohan Vats

Blog Author
Software Engineering Manager @ upGrad. Passionate about building large scale web apps with delightful experiences. In pursuit of transforming engineers into leaders.

Frequently Asked Questions (FAQs)

1What are strings in Java?

Strings in Java are used to store and manipulate text, They are represented by String class which is defined in java.lang package. String literals are enclosed between double quotes for example, String s = Hi;. String objects are created when you assign a String literal to a String variable, for example, String str = abc;. There are several methods of String class which are used for manipulating String objects. These methods are concat, substring, replace, length, toLowerCase, toLowerCase, toUpperCase, toUpperCase and split.

2Why are strings immutable in Java?

Strings are immutable because they're objects, while references are immutable because they're values, and that difference is meaningful. Being an object, a string is a collection of behaviors METHODS and fields DATA. Once you create a string, you need to do some work to make it do something else. In this case, you'd create a new string by allocating a new object, then copying the object's data fields into the new object. In this context, the new object would be mutable, since you can change it. But holding a reference to the new object is not, since you can't change the object.

3What is the toString method in Java?

The toString method in Java is used to convert objects into string form. This is a very commonly used method. Without using this, you cannot convert your object into string form. String class in Java already have a toString method and it returns the String representation of the given object. You can also use the toString method to convert a variable into a string. It is used to get the string representation of any object. For example: System.out.println o.toString;.

Explore Free Courses

Suggested Tutorials

View All

Suggested Blogs

Top 7 Node js Project Ideas & Topics
31621
Node.JS is a part of the famous MEAN stack used for web development purposes. An open-sourced server environment, Node is written on JavaScript and he
Read More

by Rohan Vats

05 Mar 2024

How to Rename Column Name in SQL
46979
Introduction We are surrounded by Data. We used to store information on paper in enormous file organizers. But eventually, we have come to store it o
Read More

by Rohan Vats

04 Mar 2024

Android Developer Salary in India in 2024 [For Freshers & Experienced]
901363
Wondering what is the range of Android Developer Salary in India? Software engineering is one of the most sought after courses in India. It is a reno
Read More

by Rohan Vats

04 Mar 2024

7 Top Django Projects on Github [For Beginners & Experienced]
52249
One of the best ways to learn a skill is to use it, and what better way to do this than to work on projects? So in this article, we’re sharing t
Read More

by Rohan Vats

04 Mar 2024

Salesforce Developer Salary in India in 2024 [For Freshers & Experienced]
909263
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

04 Mar 2024

15 Must-Know Spring MVC Interview Questions
34783
Spring has become one of the most used Java frameworks for the development of web-applications. All the new Java applications are by default using Spr
Read More

by Arjun Mathur

04 Mar 2024

Front End Developer Salary in India in 2023 [For Freshers & Experienced]
902421
Wondering what is the range of front end developer salary in India? Do you know what front end developers do and the salary they earn? Do you know wh
Read More

by Rohan Vats

04 Mar 2024

Method Overloading in Java [With Examples]
26391
Java is a versatile language that follows the concepts of Object-Oriented Programming. Many features of object-oriented programming make the code modu
Read More

by Rohan Vats

27 Feb 2024

50 Most Asked Javascript Interview Questions & Answers [2024]
4456
Javascript Interview Question and Answers In this article, we have compiled the most frequently asked JavaScript Interview Questions. These questions
Read More

by Kechit Goyal

26 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon