index方法返回一个Int:
"abc".index("b") 1
使用已定义,结果可以转换为Bool:
"abc".index("b").defined True
这是惯用的方式还是有另一种返回Bool的方法?
.contains
say 'abc'.contains('b'); # True
还有.starts-with和.ends-with.
.starts-with
.ends-with
say 'abc'.starts-with('c'); # False say 'abc'.starts-with('a'); # True say 'abc.txt'.ends-with('.txt') # True
您可以查看Str文档以获取更多方法.