C #, la méthode Split () d'une chaîne, comment puis-je mettre la chaîne résultante [] dans une arracheliste ou une pile?
Vous pouvez initialiser un List<T>
Avec un tableau (ou tout autre objet implémentant IEnumerable
). Vous devriez préférer le fortement typé List<T>
sur ArrayList
.
var myList = new List<string>(myString.Split(','));
Si vous souhaitez une méthode réutilisable, vous pouvez écrire une méthode d'extension.
public static ArrayList ToArrayList(this IEnumerable enumerable) {
var list = new ArrayList;
for ( var cur in enumerable ) {
list.Add(cur);
}
return list;
}
public static Stack ToStack(this IEnumerable enumerable) {
return new Stack(enumerable.ToArrayList());
}
var list = "hello wolrld".Split(' ').ToArrayList();
string[] strs = "Hello,You".Split(',');
ArrayList al = new ArrayList();
al.AddRange(strs);
Ou si vous insistez sur une arrachelist ou une pile
string myString = "1,2,3,4,5";
ArrayList al = new ArrayList(myString.Split(','));
Stack st = new Stack(myString.Split(','));
bouton Void Protégé1_click (expéditeur d'objet, evenargs e) {
TextBox1.Text = "Nitin Luhar";
Array name=TextBox1.Text.Split(' ');
foreach (string item in name)
{
for (int i = 0; i < item.Length; i++)
{
if (i == 0)
{
Label1.Text = name.GetValue(0).ToString();
}
if (i == 1)
{
Label2.Text = name.GetValue(1).ToString();
}
if (i == 2)
{
Label3.Text = name.GetValue(2).ToString();
}
}
}
}