Heim > Java > javaLernprogramm > Hauptteil

Wie teile ich eine Zeichenfolge in regelmäßigen Abständen in Java auf?

Patricia Arquette
Freigeben: 2024-11-15 04:04:02
Original
300 Leute haben es durchsucht

How to Split a String at Regular Intervals in Java?

Splitting Strings at Regular Intervals in Java

Splitting a string at every n-th character is a common operation in programming. In Java, there exist multiple ways to achieve this. However, one effective approach is to utilize the split() method, which allows for fine-tuning the splitting behavior.

Similar to the example provided in JavaScript, where a string is split into groups of three characters, we can replicate this functionality in Java using the following snippet:

String s = "1234567890";
System.out.println(java.util.Arrays.toString(s.split("(?<=\\G...)")));
Nach dem Login kopieren

This code achieves the desired result by splitting the string s at every third character. The split() method takes a regular expression as its parameter, and the expression provided in this case is:

(?<=\\G...)
Nach dem Login kopieren

Understanding the Regular Expression

Breaking down the regular expression part by part:

  • (?<= and ): These define a lookbehind assertion, which matches an empty string that appears after a specific pattern.
  • \G: This matches the end of the previous match, effectively acting as an anchor at the start of every third character.
  • ...: This matches any three characters.

Explanation

The split() method utilizes the pattern provided in the regular expression to identify the split points within the string. The lookbehind assertion ensures that the split occurs at positions that have three consecutive characters preceding them. The \G anchor helps maintain the correct split points as the method progresses through the string.

As a result, the output of the code is:

[123, 456, 789, 0]
Nach dem Login kopieren

This demonstrates how to effectively split a string at every n-th character in Java using the split() method and a custom regular expression.

Das obige ist der detaillierte Inhalt vonWie teile ich eine Zeichenfolge in regelmäßigen Abständen in Java auf?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage