fork(5) download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. String string = "'singlequote','2 quote'' inside single quote' ";
  6. int count2 = string.replaceAll("''|[^']", "").length();
  7. System.out.println(count2);
  8. }
  9. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
4