Is there any ability to lexemize binary file formats (e.g. jpeg images) with Fslex (with no readability lacks) or i should write my own lexer/use something like fparsec?
If you can write the lexing rules you can do it – Rune FSSep 22 '11 at 7:10
3
hi - IMHO you don't need anything as sophisticated as fslex/fsyacc or fsparsec to read in a jpeg file. Those file formats were made to be easily read/write/process by programms, have fixed formats, headers, etc. - it's straight forward to read them in and you sureley don't need generated tokens or abstract syntax trees for them – Carsten KönigSep 22 '11 at 7:12
I agree with Carsten. You can read about binary parsing here: langexplr.blogspot.com/2008/10/… also Don Syme wrote about parser combinators in his Expert F#... – DmitrySep 22 '11 at 7:23
actually it's not a real task to read jpegs. just interesting – KovalevSep 22 '11 at 7:46