fork download
  1. class Ideone {
  2. public static void main (String[] args) {
  3. String a="000";
  4. String b="|&";
  5. String result = (a + b).replaceAll("(?<=.)(?=.{" + (a.length() - 1) + "}(.))|.(?=.{0," + (b.length() - 1) + "}$)", "$1");
  6. System.out.println(result);
  7. }
  8. }
Success #stdin #stdout 0.1s 27732KB
stdin
Standard input is empty
stdout
0|0&0