In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces "how to split String strings in Java". In daily operation, I believe many people have doubts about how to split String strings in Java. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubts of "how to split String strings in Java". Next, please follow the editor to study!
Usage
One declaration of the split method is
Public String [] split (String regex)
Regex refers to the regular expression delimiter. We usually use a single character as the delimiter, which can actually be regarded as a special regular expression. The special feature is that this expression only matches itself, such as "-" match only "-". Examples are as follows:
String string = "86-15003455666"; String [] parts = string.split ("-"); String part1 = parts [0]; / 86 String part2 = parts [1]; / 15003455666
Another declaration of the split method is:
Public String [] split (String regex, int limit)
Regex refers to the regular expression delimiter, while limit specifies the number of split copies. For example, you can see
String string = "004-556-42"; String [] parts = string.split ("-", 2); / / Limited division of two copies String part1 = parts [0]; / 004 String part2 = parts [1]; / 556-42
In some scenarios, we may want to keep the delimiter in the result, which is also possible to connect the delimiter to the result on the left side of the split.
String string = "86-15003455666"; String [] parts = string.split ("(?
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.