Answers for "how to split string with multiple special characters in java"

2

java split for multiple characters

String input = "Hi,X How-how are:any you?";
String[] parts = input.split("[\\W]");
Posted by: Guest on June-02-2020
0

split with multiple condition in java

String text = "s: saturday, sunday, solar, selfie";
String[] words = text.split("[:,] ");
Posted by: Guest on June-23-2020

Code answers related to "how to split string with multiple special characters in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language