2013-08-23 54 views
-3

無法將字符串轉換爲字符錯誤消息。我試圖編寫一個程序,例如,允許用戶輸入1800HIETHC,並且它會將所有數字都返回給用戶。 我已經卡住....任何幫助或建議做什麼?將字符串轉換爲字符錯誤消息

static void Main(string[] args) 
    { 
     char number = ' '; 
     int numb = 0; 

     Console.WriteLine("Please enter the telephone number..."); 
     number = Console.ReadLine(); 

     while (number <= 10) 
     { 

      if (number == 'A') 
      { 
       numb = 2; 
      } 
     } 

     Console.WriteLine(numb); 
    } 
} 

}

+0

除了處理「A」,你嘗試過什麼?你的結果是什麼?任何錯誤?你提供的信息和展示你解決你自己的問題的嘗試,你會得到答案的可能性就越大。 – davids

回答

1

到Console.ReadLine給你一個string

一個string是,除其他事項外,char小號

集合試試這個

string number = ""; 
int numb = 0; 

Console.WriteLine("Please enter the telephone number..."); 
number = Console.ReadLine(); 

for(int i=0; i<number.Count; i++) 
{ 
    if (number[i] == 'A') 
    { 
     //... 
    } 
} 
1

Console.ReadLine()返回一個字符串不是一個字符。所以你不能把它分配給變量號。 一旦它分配給一個字符串,你可以通過做myString[0]

1

如果我理解正確,你獲得了字符的字符串,

string number = "1800HIETHC"; //Console.ReadLine() reads whole line, not a single char. 

int[] nums = Digits(number); 




static int[] Digits(string number) 
{ 
    return number.Where(char.IsLetterOrDigit).Select(ToNum).ToArray(); 
} 

static int ToNum(char c) 
{ 
    int[] nums = { 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9 }; 

    if (char.IsDigit(c)) return c - '0'; 

    c = char.ToUpper(c); 
    return nums[c - 'A']; 
}