那麼,我知道這可以是C#的非常基本的功能。 但我沒有,因爲這麼多年問這個用....有比分割功能更簡單的方法嗎?
我有一個像MYNAME-1_1#字符串1233
我想僅從之間挑數字/字母 - ,_和#...
我可以使用拆分功能,但它需要相當大的代碼...還有什麼?
從彈弦的數字,我應該像下面的代碼
string[] words = s.Split('-');
foreach (string word in words)
{
//getting two separate string and have to pick the number using index...
}
string[] words = s.Split('_');
foreach (string word in words)
{
//getting two separate string and have to pick the number using index...
}
string[] words = s.Split('#');
foreach (string word in words)
{
//getting two separate string and have to pick the number using index...
}
的輸出是什麼,你要 – Sajeetharan 2014-09-06 06:44:47
分割功能並不大。爲什麼不通過在您的問題中發佈代碼來向我們展示您的意思? – Enigmativity 2014-09-06 06:45:55
聽起來像正規表達式的工作 – ne1410s 2014-09-06 06:46:21