fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String str = "Foo03,04,50HelloFoo5,3World,45Foo4,123Bar,34Foo34,34,1Hello";
  9. System.out.printf("Replaced: [%s]%n", str.replaceAll("(\\d),\\d{1,2}", "$1"));
  10. }
  11. }
Success #stdin #stdout 0.06s 380224KB
stdin
Standard input is empty
stdout
Replaced: [Foo03,50HelloFoo5World,45Foo43Bar,34Foo34,1Hello]