Ocaml中的子串检查

时间:2011-12-04 05:17:48

标签: string ocaml

有人可以帮我编写OCaml中有效的子字符串检查吗?给定两个字符串,检查第一个字符串是否包含第二个字符串?

使用Str模块,我们可以这样做吗?

2 个答案:

答案 0 :(得分:11)

这样的事可能有用:

let contains s1 s2 =
    let re = Str.regexp_string s2
    in
        try ignore (Str.search_forward re s1 0); true
        with Not_found -> false

以下是该功能的一些测试:

# contains "abcde" "bc";;
- : bool = true
# contains "abcde" "bd";;
- : bool = false
# contains "abcde" "b.";;
- : bool = false
# contains "ab.de" "b.";;
- : bool = true

答案 1 :(得分:0)

let contains_substring search target =
    String.substr_index search target <> None