fork(3) download
  1. import java.util.*;
  2.  
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. String regex = "\\s+\\z|\\z(?<!\\s)";
  8. System.out.println("foo.".equals("foo".replaceAll(regex, ".")));
  9. System.out.println("foo.".equals("foo ".replaceAll(regex, ".")));
  10. System.out.println("foo.".equals("foo ".replaceAll(regex, ".")));
  11. System.out.println(" foo.".equals(" foo ".replaceAll(regex, ".")));
  12. }
  13. }
Success #stdin #stdout 0.12s 48220KB
stdin
Standard input is empty
stdout
true
true
true
true