My OCaml .ml code looks like this:
open Str
let idregex = Str.regexp ['a'-'z' 'A'-'Z']+ ['a'-'z' 'A'-'Z' '0'-'9' '_']*;
let evalT (x,y) = (match x with
Str.regexp "Id(" (idregex as var) ")" -> (x,y)
Why does the above code not work? How can I get it to work?
EDIT:
I don't need to do a lot of parsing. So, I want it to remain in a OCaml .ml file and not a OCamllex file
Does the following work and do what you want?
I'm an OCaml noob, but your code doesn't look like OCaml at all. I see that your question is very old, but it still comes up high enough on some searches, so I figured it might help someone else if not the OP.