Search:

Type: Posts; User: Brt93yoda

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,541

    Re: Need help with regEx

    Sorry about that.
  2. Replies
    4
    Views
    1,541

    Re: Need help with regEx

    instead of "\w" you can just use a space.


    String[] splitter = test.split(" ");

    for(int i=0;i<splitter.length;i++){
    System.out.println(splitter[i]);
    }
Results 1 to 2 of 2