fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Ideone
  6. {
  7. public static void main(String[] args) {
  8. System.out.println(countYZ("fez day"));
  9. System.out.println(countYZ("day fez"));
  10. System.out.println(countYZ("day fyyyz"));
  11. }
  12.  
  13. public static int countYZ(String str) {
  14. String regex = "([yYzZ](?![A-Za-z]))|.";
  15. return str.toLowerCase().replaceAll(regex, "$1").length();
  16. }
  17. }
Success #stdin #stdout 0.1s 48368KB
stdin
Standard input is empty
stdout
2
2
2