提问人:Lee Solgyu 提问时间:3/5/2023 最后编辑:cafce25Lee Solgyu 更新时间:3/5/2023 访问量:41
w[.. 和有什么不一样。1] 和 w[0],为什么 w[0] 不起作用?[复制]
What is the difference between w[..1] and w[0] in this code, and why didn't w[0] work? [duplicate]
问:
str.split_whitespace()
.map(|w| w[..1].to_uppercase() +&w[1..].to_lowercase())
.collect()
w[0]
并且完全相同,但我知道使用会导致错误。我想知道为什么会发生错误。w[..1]
w[0]
我对它们俩的了解:返回一个字符,并返回一个包含第一个字符的字符串切片。w[0]
w[..1]
答:
评论
"ü"