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

Implementation of string Segmentation and transfer Array in JavaString

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly talks about "the implementation of JavaString string segmentation to array", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next let the editor to take you to learn the "JavaString string segmentation to the implementation of the array" it!

In our daily development, we often encounter splitting a string according to a specified character.

At this point, we often think of using str.split (",") to process the split array.

However, using the split () method requires transfer when splitting special characters. Such as the decimal point.

Below, I would like to recommend a method that can be separated without escape.

Use delimitedListToStringArray (str,delimiter) in org.springframework.util.StringUtils

Conduct a test

Public static void main (String [] args) {String str = "aa.bb.cc.dd.ee.ff"; System.out.println ("split uses'.' Split: "+ Arrays.toString (str.split (". ")); System.out.println (" split uses escaped'. Split: "+ Arrays.toString (str.split ("\\. ")); System.out.println (" StringUtils.delimitedListToStringArray uses'.' Split: "+ Arrays.toString (StringUtils.delimitedListToStringArray (str,". "));}

Running result

Split uses'.' Segmentation: [] split uses escaped'\.' Split: [aa, bb, cc, dd, ee, ff] StringUtils.delimitedListToStringArray uses'.' Split: [aa, bb, cc, dd, ee, ff]

At this point, I believe you have a deeper understanding of "the implementation of JavaString string segmentation to array". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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

Development

Wechat

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

12
Report