I need regex for recognizing names which can be [a-zA-Z_] then . (dot) then again [a-zA-Z_]. I ([a-zA-Z_]+) \.([a-zA-Z_]*) but it doesn't work. Help ? Can anybody give me hoe to do that in JFlex ?

link|improve this question

60% accept rate
Are you referring to a literal dot or the dot metacharacter (matching anything but a new line)? – 3lectrologos Jan 5 '11 at 10:37
My last edit was only code formatting, the backslash was present but invisible. (even though the edit looks as if I have added that backslash - that wasn't me, honestly!!) – Andreas_D Jan 5 '11 at 10:42
5  
What do you mean by "doesn't work"? does it produce a regex compilation error? Does it fail matching something it should, or matches something it shouldn't? – Eyal Schneider Jan 5 '11 at 10:43
1  
@JaneNY - please show an (original) example name/input where this pattern doesn't match. – Andreas_D Jan 5 '11 at 10:58
@JaneNY, from your previous posts, I make up you're trying to parse, and then evaluate boolean expressions. Instead of creating a parser yourself, have you considered using an existing (and proven!) one? Or perhaps Java's built-in script-engine can evaluate them on the fly for you? – Bart Kiers Jan 5 '11 at 15:13
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

changing regexp by escaping dot and removing space.

([a-zA-Z_]+)\.([a-zA-Z_]*)

additional suggestion to drop () and use temporary identifiers

edit: increasing reputation by commenting regexp

link|improve this answer
sorry, thanks :) – please delete me Jan 5 '11 at 10:39
3  
Even if it works: a downvote from me for posting (1) just a simple regexp without explanation and (2) not formatting that single line as code. But I can change my vote ;) – Andreas_D Jan 5 '11 at 10:43
please do :] not that it matters – please delete me Jan 7 '11 at 15:05
feedback

You need to escape the dot: "\." - otherwise, the regex parser treats it as the reserved "any char" symbol.

-- EDIT -- Now that we know that the dot IS escaped and therefore not the real problem: Are you sure the space before the dot is intentional?

link|improve this answer
(it was escaped - the backslash shows up as soon as you appy code formatting) – Andreas_D Jan 5 '11 at 10:39
@Andreas_D: mmm... you are right. I suppose that the OP should provide more info. – Eyal Schneider Jan 5 '11 at 10:42
If this pattern is copy-pasted from the original code, then, yes, I bet, the space before \. is the actual show stopper – Andreas_D Jan 5 '11 at 10:59
2  
@Andreas_D, no, the white space literals are ignored in JFlex rules. If you want to match a literal space in JFlex, either create a character class containing a space [ ], or quote it: " " – Bart Kiers Jan 5 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

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