true "THIS is Some uppercase " -> false "HelloW-6ren">
gpt4 book ai didi

string - Julia - 检查字符串中的每个字符是否都是小写或空格

转载 作者:行者123 更新时间:2023-12-02 05:36:25 24 4
gpt4 key购买 nike

如何检查字符串中的每个字符是否都是小写或空格?

"this is all lowercase"   -> true 
"THIS is Some uppercase " -> false
"HelloWorld " -> false
"hello world" -> true

最佳答案

您可以使用 all 的谓词/itr 方法 ( docs :

julia> f(s) = all(c->islower(c) | isspace(c), s);

julia> f("lower and space")
true

julia> f("mixED")
false

关于string - Julia - 检查字符串中的每个字符是否都是小写或空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51486964/

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