Java / Using String
How do I split a pipe delimited Java String using split method?
The pipe (|) symbol need to be escaped using \\ to treat it as a normal character since split method uses regular expression and in regex | (pipe) is a meta character representing OR operator.
String pipeDelimitedStr = "Tag1|Tag2|Tag3";
String[] tags = pipeDelimitedStr.split("\\|");
for (String tag : tags) {
System.out.println(tag);
}
Dogecoin! Earn free bitcoins up to $250 now by signing up.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
