What is the correct way to specify Unicode characters in pattern for FSharp Lexer. Following code is not compiled with the FsLex.exe utility:

let lexeme lexbuf = LexBuffer<char>.LexemeString lexbuf
...
rule tokenize = parse   

| ['a'-'z' 'A'-'Z'] { TOKEN1 }  
| [\u0100\u0101]    { TOKEN2 } 
| [\u0102-\u01FF]   { TOKEN3 }  
...
| [eof]             { EOF }

What I'm doing wrong?

P.S: I'm using fslex.exe with --unicode option

Thanks, Vitaliy

link|improve this question

Not sure if it helps, but you can try looking at the F# lex.fsl file here: github.com/fsharp/fsharp/blob/master/src/fsharp/lex.fsl – Tomas Petricek Mar 2 '11 at 14:58
Nice example to work with. I found mistake - absent quotes - solution would be use following construction ['\u0100'-'\u01FF']. – Vitaliy Mar 2 '11 at 16:04
@Tomas: Another observation - if I specify too wide range ['\u0100'-'\uFFFF'], compilation takes more time and compiled lexer.fs file will be comparable big (tens of MB). So possible better in some cases use specific characters: '\Ll', '\Lu', etc. - msdn – Vitaliy Mar 2 '11 at 16:43
feedback

1 Answer

up vote 2 down vote accepted

I think you have to put the unicode characters in single quotes, just like in normal F# code.

At least that seems to work for a small example that I tested.

link|improve this answer
Yes, thank you - I tried this too and it works for me – Vitaliy Mar 2 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

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