Mega Code Archive

 
Categories / Java / Data Type
 

Replace every occurrences of a string within a string

public class Main {   public static void main(String[] args) {     String text = "a b c e a b";     System.out.println(text.replaceAll("(?:a b)+", "x y"));   } } //x y c e x y