我有以下代碼:分割字符串和轉換指標之一,因爲INT
static void Main(string[] args)
{
string prueba = "Something_2.zip";
int num;
prueba = prueba.Split('.')[0];
if (!prueba.Contains("_"))
{
prueba = prueba + "_";
}
else
{
//The code I want to try
}
}
的想法是,在事我想分裂_
後的字符串,並將其轉換爲int,我這是否像
num = Convert.ToInt16(prueba.Split('_')[1]);
但我可以施放拆分?例如num = (int)(prueba.Split('_')[1]);
可以這樣做嗎?或者我必須使用Convert
?
你試過了嗎? –
@ d.moncada是的,但它說我不能將字符串轉換爲int。所以唯一的方法是使用轉換呢? – Nickso
您是否嘗試過使用Convert?你會得到什麼錯誤? – Jorgel