一個字符的位置我的代碼是這樣的:C#得到字符串
string dex = "ABCD1234";
string ch = "C";
string ch1, ch2;
if (dex.Contains(ch))
{
string n = Convert.ToChar(dex);
MessageBox.Show(ch + " is on " + n + " place and is between " + ch1 + " and " + ch2);
}
我想將字符串轉換成數組,但我不能這樣做,我不能檢索「ch的位置'字符串以及它之間的內容。
輸出應該是:
MessageBox.Show("C is on 3rd place and is between B and D");
謝謝你,如果我想設置的,而不是「CH」像TextBox1中的字符串.text,我怎麼能轉換成char? – Sedax
那麼... textbox1.Text是一個完整的字符串屬性。你必須將它轉換爲一個字符數組('Textbox1.Text.ToCharArray()')並在'for'循環中迭代 – Brandon
謝謝布蘭登。 – Sedax