java split for multiple characters
String input = "Hi,X How-how are:any you?";
String[] parts = input.split("[\\W]");
java split for multiple characters
String input = "Hi,X How-how are:any you?";
String[] parts = input.split("[\\W]");
java array split by multiple ways
public class split_demo {
public static void main (String[] args)
{
String str_split="split method.It is cool - (Hello-World)";
for (String str_complex : str_split.split("\\s|,|\\.|-")) {
System.out.println(str_complex);
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us