Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to split String strings in Java

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report