fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. def artLeadStr = "[JONES,MIKE - mj211f]"
  4. def artLeadIdResult = artLeadStr.replaceAll(/[a-z]\S{5}/, "")
  5. println(artLeadIdResult)
  6. }
  7. }
  8.  
Success #stdin #stdout 1.74s 119412KB
stdin
Standard input is empty
stdout
[JONES,MIKE - ]