在C#中,我們可以使用Try-Catch語句來處理字符串拆分時可能出現的異常。以下是一個示例代碼:
using System;
class Program
{
static void Main()
{
try
{
string input = "Hello World";
string[] words = input.Split(' ');
foreach (string word in words)
{
Console.WriteLine(word);
}
}
catch (Exception ex)
{
Console.WriteLine("An error occurred: " + ex.Message);
}
}
}
在上面的示例中,我們嘗試將字符串“Hello World”按空格拆分為單詞,并使用Try-Catch語句來捕獲可能出現的異常。如果出現異常,程序將打印錯誤消息,否則將輸出拆分后的單詞。這樣可以確保程序在遇到異常時不會崩潰,而是能夠繼續執行下去。