标签: string import module ocaml
我无法使用模块Extstring。
答案 0 :(得分:5)
如果您正在运行顶层,则需要在其路径中包含exstring.cmo(简单的方法是在与ocaml相同的目录中运行extstring.cmo)。然后,你可以这样做:
exstring.cmo
ocaml
extstring.cmo
# #load "extstring.cmo";; # Extstring.split "a.b" '.' 2;; [..]