fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. def AllEnviroments = ['company-test', 'MYTEST-1234', 'company-somethingelse-something']
  4. def EnviromentChoices = AllEnviroments.findAll { it =~ /company-(?!something).*|MYTEST/ }.sort()
  5. print(EnviromentChoices)
  6. }
  7. }
  8.  
Success #stdin #stdout 1.48s 140384KB
stdin
Standard input is empty
stdout
[MYTEST-1234, company-test]