If you are looking to learn how to split a string in Java, you have come to the right place. String operations are the most common operations when it comes to programming. Java Strings are no different and will be used in almost every program you write.
To split a string in Java, you need to use the String.split() method that is readily available to the Java programmer. Let’s see an example to get a better idea.
String string = “live-coding” String[] splitted= string.split(“-”); String splitted1= splitted[0]; //live String splitted2 = splitted[1]; //coding
The main method that does the job is the split() method. The method takes regex as an argument. Regex is great. However, they can be complex to use. With regex, you need to take care of the escape characters. Let’s learn more about it below.
Escape characters: There are many escape characters in the Java programming language. For example, dot(.) or backslash(), etc.
To handle the escape character, you can either choose to create a special regex for the operation, or you can use Pattern.quote() function to escape the character. Let’s see an example below to understand the whole picture.
As mentioned earlier, you can choose to use the Pattern.quote() method or use the traditional escape method of using a double backslash(). Let’s see both of them live in the code below.
Filename: DotSplit.java
package com.livecoding.test import java.util.regex.Pattern; public class DotSplit{ public static void main(String[] args) { String string1= "live.coding.edu"; String[] result = string1.split("."); //You can also use Pattern.quote method if you find escaping escape characters //String[] output = string1.split(Pattern.quote(".")); System.out.println(result[0]); System.out.println(result[1]); System.out.println(result[2]); } }
Output
live coding edu
Alternative Ways
There are many other ways to split the string. One way is to use the StringTokenizer class. StringTokenizer class is a legacy class and should be used with caution.
Before you want to split a string according to a particular character, it is advisable to test whether it appears i n the string. You can do so by using the contains() method.
The logic goes as below:
If (string.contains(“.”)) { //continue with the task } else { //throw an exception }
And, that’s the end of the tutorial. If you have any other questions, don’t forget to comment below and let us know.
You can also check on our website for videos about Java. Below are some examples:
You can also follow some of our broadcasters who program in Java as below:
Another cool way to find out interesting things about Java is to access our project page!
We’re thrilled to announce an exciting opportunity for you to win not one but two…
Acquiring practical skills is crucial for career advancement and personal growth. Education Ecosystem stands out…
Artificial Intelligence (AI) has been making significant strides in various industries, and the software development…
Another week to bring you the top yield platforms for three of the most prominent…
If you hold a large volume of LEDU tokens above 1 million units and wish…
It’s another week and like always we have to explore the top yield platforms for…
View Comments
Good subject. I hope you also do a tutorial like this for Ruby.