gpt4 book ai didi

string - 如何比较 Ocaml 中的字符串

转载 作者:行者123 更新时间:2023-12-03 19:49:43 24 4
gpt4 key购买 nike

我如何去比较字符串?例如
"a"和 "b",因为 "a"出现在 "b"之前,所以我会放入这样的元组 ("a","b") .对于“c”和“b”,应该是这样的 ("b","c")

最佳答案

您可以使用常用的比较运算符比较字符串:= , <> , < , <= , > , >= .

您也可以使用 compare函数,如果第一个字符串小于第二个,则返回 -1,如果第一个字符串大于第二个,则返回 1,如果它们相等,则返回 0。

# "a" < "b";;
- : bool = true
# "a" > "b";;
- : bool = false
# compare "a" "b";;
- : int = -1

关于string - 如何比较 Ocaml 中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46882374/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com