使用string对象的indexOf()方法来定位字符串中某个指定字符首次出现的位置。怎么编程

2024-12-15 17:15:59
推荐回答(3个)
回答1:

int location = "abcdefg".IndexOf("d");
C#,执行后location的值是4

回答2:

圣达菲

回答3:

什么语言啊