我无法使用模块 Extstring。
最佳答案
如果您正在运行顶层,则需要在其路径中包含 exstring.cmo
(简单的方法是在与 ocaml
相同的目录中运行 extstring.cmo
)。然后,你可以这样做:
# #load "extstring.cmo";;
# Extstring.split "a.b" '.' 2;;
[..]
关于string - 如何在 ocaml 中导入和使用新模块?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8516074/