Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

for example

Maze0.bmp (0,0) (319,239) 65 120
Maze0.bmp (0,0) (319,239) 65 120 (254,243,90)  
Maze0.bmp (0,0) (319,239) 65 120 (254,243,90) (0,0,0)
Maze0.bmp (0,0) (319,239) 65 120 (254,243,90) (0,0,0) (11,33,44)

I want to get the maze0.bmp and all the numbers . Thank you. I have

Pattern pattern = Pattern.compile("([A-z][^\\s]*)\\s+\\((\\d+),(\\d+)\\)\\s+\\((\\d+),(\\d+)\\)\\s+(\\d+)\\s+(\\d+)\\s+(\\((\\d+),(\\d+),(\\d+)\\)\\s*)"); 
BufferedReader stdin = new BufferedReader(new InputStreamReader( System.in));
String input;
Matcher matcher = null; 
boolean isMatched = false; 
while (!isMatched) {
    System.out.println("Please enter right format\n");
    input = stdin.readLine(); 
    matcher = pattern.matcher(input); 
    while(matcher.find()) {
        isMatched = true; 
        for (int i = 1; i <= matcher.groupCount(); ++i) 
            System.out.println(matcher.group(i));
    }
}

but it's correct. for example if my input is

Maze0.bmp (0,0) (319,239) 65 120 (254,243,90) (0,0,0)

it cannot get the the last tuple( 0,0,0)

Thank you!

share|improve this question
Are you saying you only have tuples? If so, you can do a global match on (\\d+) and it should flatten them all out. – sln Feb 6 '11 at 5:56
no. please read the question again. I just edited. stackoverflow changes the \\ to \ Thank you – eggyolk13 Feb 6 '11 at 6:30
You are aware that [A-z] typically matches non-letter characters (e.g., [, ^ and _) as well? There's a gap between Z and a. – Donal Fellows Feb 6 '11 at 8:40
Thank you for pointing it out. I will change it – eggyolk13 Feb 6 '11 at 15:01

3 Answers

up vote 1 down vote accepted

Here is the best I can come up with. Note, that I used TWO patterns, because for some reason Java refuses to capture repeating groups (if anyone happens to know why, plz leave a comment).

final Pattern outerPattern = Pattern.compile("(.*?) \\((\\d+),(\\d+)\\) \\((\\d+),(\\d+)\\) (\\d+) (\\d+)(.*)");
final Pattern optionalTouplePattern = Pattern.compile(" \\((\\d+),(\\d+),(\\d+)\\)");

final BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
boolean isMatched;

do
{
    System.out.println("Please enter right format:");
    Matcher m = outerPattern.matcher(stdin.readLine());
    if (isMatched = m.find())
    {
        System.out.println(String.format("name='%s', first touple: [%s,%s], second touple: [%s,%s], first single number: %s, second single number: %s", m.group(1), m.group(2), m.group(3), m.group(4), m.group(5), m.group(6), m.group(7)));
        m = optionalTouplePattern.matcher(m.group(8));
        while(m.find())
        {
            System.out.println(String.format("+ optional touple: [%s,%s,%s]", m.group(1), m.group(2), m.group(3)));
        }
    }
}while(!isMatched);
share|improve this answer
Thank you. This one works – eggyolk13 Feb 6 '11 at 15:00
.. some reason Java refuses to capture repeating groups This has nothing to do with Java. Regular expression capture groups retain the last item it captures. So 'aabbb' =~ /(a)+(b)+/ captures a and b respectively. – sln Feb 6 '11 at 17:31
@sin: In PCRE you can get all repeated groups as well. Is this a special feature of PCRE that is non standard? (Can you quote an RFC or something similiar that states that what java does is the expected standard behaviour?) Thanks. – yankee Feb 6 '11 at 17:35
@yankee - Its a possible misunderstanding of grouping behavior. There is only a single capture group that can be backreferenced, therefore, its contents at any given time must be referencable. A group will contain the value of the atomic expression it encapsulates and nothing more, ever, past its closing brace. So '00aaabbb00' =~ / ((a)+(b)+) / group 1 = 'aaabbb', 2 = 'a', 3 = 'b'. Sound good? – sln Feb 6 '11 at 18:07
@sin: Yes, I understand the design. But using the PCRE you can do somthing like this: stackoverflow.com/questions/4909830/… which works perfectly well and could be used here to parse the text with only one pattern. I understand the concept you described but the other concept is good in some cases, too (such as this one). And I wonder if one of the concepts has some kind of standard (or both). Or if it is eaven possible to set a flag in Java to get the same behaviour as in the linked script using PCRE. – yankee Feb 6 '11 at 18:17
show 2 more comments

Ok, sorry, I have got to revise. The java matcher seems to not like pattern counts it can't determine at compile time of the regex. But this works (tested):

Matcher m = Pattern.compile("\\((\\d+),(\\d+),(\\d+)\\)").matcher("(23,56,78) (54,22,11)");
while(m.find())
{
  for(int i = 1; i <= m.groupCount(); ++i)
  System.out.println(m.group(i));
}
share|improve this answer
Thank you. why there's ? and : – eggyolk13 Feb 6 '11 at 5:07
plain parentheses create a sub pattern AND a group at the same time. I want the sub pattern (so that I can use a quantifier on it), but I don't care about making it a group. So I add ?: to the beginning which suppresses the group part. – yankee Feb 6 '11 at 5:11
I use Matcher to match the input and try to get the numbers by using the group(int index) function, but I can only get the number of the last tuple .For example if my input is (23,56,78) (54,22,11) I can only get 54 22 and 11 Don't know how to solve this. – eggyolk13 Feb 6 '11 at 5:11
that's probably because I forgot about the whitespaces in your groups. Hold on, I edit... – yankee Feb 6 '11 at 5:13
still only get the last tuple. Thank you though – eggyolk13 Feb 6 '11 at 5:20
show 10 more comments

I don't know the context of matching in java, but I know regex very well. Try this context:

while matching BITMAP records is not done
  ("
     ([A-z][^\s])            'maze.bmp'   ~ group 1
     \s+
     \(  (\d+),(\d+)  \)     '0' '0'      ~ group 2,3
     \s+
     \( (\d+),(\d+) \)       '319'  '239' ~ group 4,5
     \s+
     (\d+)                   '65'         ~ group 6
     \s+
     (\d+)                   '120'        ~ group 7
     \s+
     (
       (?: \( \d+,\d+,\d+ \) \s+ )+       '(254,243,90) (0,0,0) '     ~ group 8
     )
  ") - context = global
{
      // save to BITMAP.array (groups 1 - 7)
      copy group 8 to variable '(254,243,90) (0,0,0) '
      new matching of TUPLES, group 8 is the regex subject for this new match
         ("
            (\d+)
         ") - context = global

      append TUPLES.array (254 243 90 0 0 0)
      to BITMAP.array (maze.bmp 0 0 319 239 65 120 <append> 254 243 90 0 0 0)

     // do next BITMAP record
}
share|improve this answer
Thank you. I don't quiet understand this. – eggyolk13 Feb 6 '11 at 15:00
You don't understand what exactly? Ask yankee, he understood it, see his code. – sln Feb 6 '11 at 17:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.