fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. println("1EURO16" ==~ /[12](?:[RLXYB]|EURO)(?:10|12|14|16)/) // => true
  4. println("1EURO19" ==~ /[12](?:[RLXYB]|EURO)(?:10|12|14|16)/) // => false
  5. }
  6. }
  7.  
Success #stdin #stdout 1.68s 118356KB
stdin
Standard input is empty
stdout
true
false