标签: c#
这是一个非常基本的问题,但我无法找到特定角色的位置。例如:
string a = "ABCDE";
我希望从字符串上面找到“E”的位置。
答案 0 :(得分:16)
使用IndexOf
var pos = a.IndexOf('E');