fork download
  1. import java.util.regex.Pattern
  2.  
  3. object Main extends App {
  4. // your code goes here
  5. val other =
  6. "^[^\u0000-\u00a0\u1680\u2000-\u200a\u202f\u205f\u3000\u2028\u2029]$"
  7.  
  8. Pattern.compile(other, Pattern.CASE_INSENSITIVE)
  9. }
Success #stdin #stdout 0.47s 3357184KB
stdin
Standard input is empty
stdout
Standard output is empty