Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to parse Android log system file. Everything is going OK but it doesn't work when I try to parse parameters from log content. My grammar which provides parsing log content

logcontent : ( parameter|text|SPECIALCHAR|DIGIT|MINUS|EQUAL|COLON|DOT|APOSTROPHE|LEFTBRACKET|RIGHTBRACKET|SLASH|'_'|WS )+;

parameter : text+ EQUAL (integer|floatnumber|exponentfloat) ;

Parameter has text inside the rule so ANTLR says that grammar is ambiguous. I tried with a different rule definitions but it doesn't work. I'd like to parse this fragment of log

acquireWakeLock flags=0x2000000a tag=KEEP_SCREEN_ON_FLAG uid=1000 pid=373

How can I get whole log in string format and list of pairs 'parameter = value'

flags=0x2000000a

tag=KEEP_SCREEN_ON_FLAG

uid=1000

pid=373

share|improve this question
1  
I don't think ANTLR is the right tool for this job, not that it can't do it, I just don't think it is the best tool. – Jarrod Roberson Jan 2 at 22:19

1 Answer

I highly recommend using regular expressions for this task instead. It's faster and simpler for this type of operation.

Pattern pattern = Pattern.compile("^(.*?)=(.*)$");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
    String key = matcher.group(1);
    String value = matcher.group(2);
    // do whatever here...
}
share|improve this answer
Thanks a lot! It realy helped me. – user1943331 Jan 4 at 20:32

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.