Forum: Java Feb 23rd, 2007 |
| Replies: 7 Views: 3,965 I assume someone needs to tell the teacher that. LOL
I was wondering why one wouldn't just regex for validation. |
Forum: Java Feb 23rd, 2007 |
| Replies: 7 Views: 3,965 To help get you started:
import java.util.*;
public class Playing {
public static void main(String[] args) {
String ip = new String("127.0.0.1");
StringTokenizer... |