IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Works for me

import java.util.regex.*;
//--------------------^^
public class MyThingy {

\tpublic static void main(String[] args) {
\t\t
\t\tPattern p = Pattern.compile("a*b");
\t\tMatcher m = p.matcher("aaaaab");
\t\tboolean b = m.matches();
\t\t
\t\tSystem.out.println(b);
\t\tSystem.exit(0);
\t}
}
--
Chris Altmann
New PEBKAC
Problem Exists Between Keyboard And Chair

I typed: import java.util.regex

Oops.
InThane - Now running Ashton rev 2.0
     Interesting little Java problem... - (inthane-chan) - (2)
         Works for me - (altmann) - (1)
             PEBKAC - (inthane-chan)

What were the skies like when you were young?
27 ms