class Ideone {
    static void main(String[] args) {
		def AllEnviroments = ['company-test', 'MYTEST-1234', 'company-somethingelse-something']
		def EnviromentChoices = AllEnviroments.findAll { it =~ /company-(?!something).*|MYTEST/ }.sort()
		print(EnviromentChoices)
    }
}
