作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 OCaml .ml 代码如下所示:
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)
最佳答案
match
关键字适用于 OCaml 模式。正则表达式不是 OCaml 模式,它是一种不同的模式,所以你不要使用 match
为他们。
在同一个 Str
module与 regexp
函数是匹配函数。
如果你有很多正则表达式匹配要做,你可以使用 ocamllex
,它会读取一个定义文件,该文件类似于您的 idregex
的(不幸的是无效的)定义。 ,并生成 OCaml 代码来进行匹配。
这是一个展示如何使用 Str
对您的模式进行简单匹配的 session 。模块。
$ ocaml
OCaml version 4.01.0
# #load "str.cma";;
# let idregex = Str.regexp "[a-zA-Z]+[a-zA-Z0-9_]*";;
val idregex : Str.regexp = <abstr>
# Str.string_match idregex "a_32" 0;;
- : bool = true
# Str.string_match idregex "32" 0;;
- : bool = false
关于regex - 如何在 OCaml 中使用 "match with"和正则表达式匹配字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25221226/
我是一名优秀的程序员,十分优秀!