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
More Posts related to Java,
- Deep Dive into Java 8 Predicate Interface
- Read and Parse XML file using Java DOM Parser [Java Tutorial]
- Java 8 Predicate Functional Interface isEqual() Method Example
- Convert Multidimensional Array toString In Java
- How to read int value using Scanner Class Java
- Spring Boot AI + LLM + Java Code Example
- Write to a File using Java Stream API
- Implementing Bubble Sort Algorithm using Java Program
- How to Fix XmlBeanDefinitionStoreException in Java SpringBoot ApplicationConfig.xml
- YAML Parser using Java Jackson Library Example
- [Fix] java: integer number too large compilation error
- Convert JSON String to Java GSON Object Example
- Read a file using Java 8 Stream
- Java Spring Boot 3 Web Hello World with Gradle in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Pretty Print JSON String in Java Console Output
- Java JDBC with Join Queries Example
- How to Check For Updates on Windows 11 (Step-by-Step)
- [Fix] java.net.MalformedURLException: unknown protocol
- How to display date and time in GMT Timezone in Java
- Error: LinkageError occurred while loading main class UnsupportedClassVersionError [Eclipse Java]
- How to convert a String to Java 8 Stream of Char?
- RabbitMQ Queue Listener Java Spring Boot Code Example
- 5+ Fibonacci number Series Java Program Examples [ 0 1 1 2 3 ..]
- Handling NullPointerException with Java Predicate
More Posts:
- How to know the Version of Notepad App on Windows 11 - Windows-11
- Java 8 Leap year check using Year class from java.time api - Java
- Cannot access Windows application shortcuts on Start menu and Taskbar - Windows
- How to hard reset Mac Terminal Window - MacOS
- How to add Business Users using Microsoft 365 Admin Center - Microsoft
- Convert JSON String to Java GSON Object Example - Java
- [javaScript] Convert text case to lowercase - JavaScript
- Steps to Install Jenkins on M1/M2 Mac - MacOS