"Clean Monkey" # but got > -6ren">
gpt4 book ai didi

string - 如何在 julia 中剥离字符串

转载 作者:行者123 更新时间:2023-12-05 08:48:15 27 4
gpt4 key购买 nike

当我尝试在 Julia 中剥离一个字符串时,为什么会出现错误?

strip("Clean Monkeys", "s")
# expected
> "Clean Monkey"
# but got
> MethodError: objects of type String are not callable

最佳答案

在 Julia 中,字符周围的单撇号和双撇号之间存在差异(与 Python 和 R 等语言不同)。所以 "s" 被视为字符串,'s' 被视为字符。

Strip 只删除字符而不是字符串。从文档:strip(str::AbstractString, chars) -> 子字符串

# This works
strip("Clean Monkeys", 's')
> "Clean Monkey"

# you can also provide lists of characters
strip("Clean Monkeys", ['e', 'y', 's'])
> "Clean Monk"

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

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