第 32 章 str 库:正则表达式和字符串处理

The str 库提供高级字符串处理函数,其中一些基于正则表达式。它旨在支持通常使用脚本语言(如 awkperlsed)执行的文件处理。

使用 str 库的程序必须按如下方式链接

        ocamlc other options -I +str str.cma other files
        ocamlopt other options  -I +str str.cmxa other files

要交互式使用 str 库,请执行

        ocamlmktop -o mytop str.cma
        ./mytop

或(如果您的平台支持动态链接 C 库),启动 ocaml 并输入

# #directory "+str";;
# #load "str.cma";;