Search:

Type: Posts; User: username9000

Search: Search took 0.10 seconds.

  1. Replies
    4
    Views
    3,049

    [SOLVED] Re: Java Regular Expressions (regex) Greif

    Yeah, my input string was "Time IRIGB (s) Lat Ltn (deg) Lon Ltn (deg) Tas stbd (m/s) wind speed Hg (m/s) wind direction Hg (deg t)"

    and my program output was:
    Time IRIGB (s)
    Lat Ltn (deg)
    Lon...
  2. Replies
    4
    Views
    3,049

    [SOLVED] Re: Java Regular Expressions (regex) Greif

    I found the answer, this works:


    if(matcher.find()){
    System.out.println("found:");
    System.out.println(matcher.group());
    while(matcher.find()){...
  3. Replies
    4
    Views
    3,049

    [SOLVED] Java Regular Expressions (regex) Greif

    Hi, I'm trying to parse some text with java's regex and nothing seems to be working -_-;;;
    In this code all I am trying to do is parse a string for words and it doesn't work:
    Code:

    Pattern...
Results 1 to 3 of 3