Click here to Skip to main content
15,896,063 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
Question[SOLVED] C Code Parsing Pin
Richard Andrew x645-Sep-12 16:03
professionalRichard Andrew x645-Sep-12 16:03 
I'm trying to write a scanner using Flex.

The problem is that one of my regex's works in the Visual Studio Find dialog, but not in Flex when tested on the same file!

By "not working" I mean that it doesn't find any matches.

C++
\'((.)|(\\['"?\\abfnrtv])|(\\[0-7]{1,3})|(\\[Xx][0-9a-fA-F]+))\'


This regex is supposed to recognize any character literals, like 'a', '\t', '\012', or '\x01AF'.

Can anyone suggest why this regex is not finding any matches in Flex?

SOLVED: It turns out that I had other rules that were consuming the character literals earlier in the process. D'Oh! | :doh:



The difficult we do right away...
...the impossible takes slightly longer.


modified 6-Sep-12 16:11pm.

AnswerRe: C Code Parsing Pin
Peter_in_27805-Sep-12 16:45
professionalPeter_in_27805-Sep-12 16:45 
GeneralRe: C Code Parsing Pin
Richard Andrew x646-Sep-12 10:09
professionalRichard Andrew x646-Sep-12 10:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.