If you have a String in Java, or you are reading an external CSV, txt, or any other type of file line-by-line and want to split it based on a specific character then you can make use of the build-in split(String regex) function from String class,
Example 1: Split String with CSV LineString csvLine = "1,2,3,4,5,6";
String[] numStrArray = csvLine.split(",");
for (String num: numStrArray) {
System.out.println(num);
}
Output:
1
2
3
4
5
6
Example 2: Split String with Pipe Seperated Line
String pipeSeperatedLine = "1|2|3|4|6";
String[] numStrArray = pipeSeperatedLine.split("\|\");
for (String num: numStrArray) {
System.out.println(num);
}
Output:
1
2
3
4
5
6
Example 3: Split String with Space Separated Line

Splitting String in Java
More Posts related to Java,
- Drop table using Java JDBC Template
- Java - Check if array contains the value
- YAML Parser using Java Jackson Library Example
- Java Jackson ObjectMapper Class with Examples
- Get Client IP address from HTTP Response in Java
- How to Word-Warp Console logs in IntelliJ
- Exception in thread main java.lang.NoClassDefFoundError: package javaClass
- Setting Java_Home Environment variable on Windows Operating System
- Fix: Maven - Failed to execute goal - Compilation failure - Source/Target option 5 is no longer supported. Use 7 or later
- Java SE JDBC Select Statement Example
- How to extract Java Jar/War/Ear files in Linux
- java: unclosed string literal [Error]
- [Solution] Exception in thread main java.util.EmptyStackException
- Read YAML file Java Jackson Library
- What Java version is used for Minecraft 1.18
- [Java] How to throws Exception using Functional Interface and Lambda code
- [Program] How to read three different values using Scanner in Java
- Java 8 Predicate Functional Interface Examples
- Display Era details (AD BC) in Java Date using SimpleDateFormat
- Convert String Date to Date Object in Java
- Struts 2 Hello World Example in Eclipse
- Read a file using Java 8 Stream
- Java - How to set custom thread name?
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- java: ']' expected error [fixed]
More Posts:
- How to Enable or Disable Dark Mode on macOS Ventura 13 - MacOS
- Rounded Images in Bootstrap framework - Bootstrap
- Sharepoint Server 2016 installation Prerequisites with download links - SharePoint
- How to display date and time in GMT Timezone in Java - Java
- Quick Steps to install NodeJs on macOS - MacOS
- How to Generate Self-Signed OpenSSL certificate in three easy steps - HowTos
- Spotify is down for iOS and Android globally - error no internet connection available, something went wrong - News
- Understanding grep command and its usage [Unix/Linux/macOS/Windows-Bash] - HowTos