string qwe = "ABCD";
if(qwe.StartsWith("A") && qwe.EndsWith("D"))
{
MessageBox.Show("Message");
}
我需要的是做出B和C的决定,但不是StartsWith和EndsWith,我真的很难解释,但就像这样:
if(qwe.Second("B"))
{
//Do anything
}
and
if(qwe.Third("C"))
{
//Do anything
}
答案 0 :(得分:0)
你知道你可以access characters via index(零基础)吗?
if(qwe.Length >= 2 && qwe[1] == 'B')
{
//Do anything
}
if(qwe.Length >= 3 && qwe[2] == 'C')
{
//Do anything
}