Guest User

Untitled

a guest
Aug 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Will-Hartungs-iMac:tmp willh$ cat x.java
  2. public class x {
  3. public static void main(String args[]) {
  4. System.out.println("s = " + args[0] + " - rx: " + args[1]);
  5. System.out.println(args[0].matches(args[1]));
  6. }
  7. }
  8.  
  9. Will-Hartungs-iMac:tmp willh$ java x friends "s$"
  10. s = friends - rx: s$
  11. false
  12. Will-Hartungs-iMac:tmp willh$
Add Comment
Please, Sign In to add comment