Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.07 seconds.

  1. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    Are you sure that's working? I think you're missing a couple points when it comes to regular expressions. When I put that into my test program, it takes this String:

    "MC Cnj Jup...
  2. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    Yeah I know, what I've posted is just a simplified version of exactly what you're doing. It's doing the exact same thing, it's just easier to work with. Run my code (which is really just your code),...
  3. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    This is how I meant you to use the class I posted:

    public class RegularExpressionTest {

    public static void main(String... args){

    String test = "MC Cnj Jup (L) Tr-Na 00:01am ...
  4. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    Oh my! Where in the world are you? Here it's only 2:30 PM!

    Here is my tiny class that I use for testing regular expressions, maybe it will help you get started:

    import java.util.regex.Matcher;...
  5. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    Like I said before, I really highly recommend reading up on the Pattern class API, then throwing together a little tiny test program that tests one line at a time. That's exactly what I do, and if...
  6. Replies
    13
    Views
    2,050

    [SOLVED] Re: wildcard delete

    What's wrong with replaceAll?
Results 1 to 6 of 6